iterate through hash map in java code example
Example 1: java iterate through hashmap
for (Map.Entry<String, String> entry : yourHashMap.entrySet()) {
System.out.println(entry.getKey() + " = " + entry.getValue());
}
Example 2: foreach hashmap java
hashmap.forEach(BiConsumer<K, V> action)