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