Answers for "iterate hashmap in java 8 using stream"

0

How to iterate hashmap entries in java

// Creating a HashMap
Map<String, String> langTable = new HashMap<String, String>();
 
// Inserting elements to HashMap
langTable.put("A", "Angular");
langTable.put("J", "Java");
langTable.put("P", "Python");
langTable.put("H", "Hibernate");
 
// Iterating HashMap using foreach
for (Map.Entry<String, String> set : langTable.entrySet()) {
	// Printing all elements of a Map
	System.out.println(set.getKey() + " = " + set.getValue());
}
Posted by: Guest on March-01-2022
0

iterate map in java 8 using stream

public void iterateUsingStreamAPI(Map<String, Integer> map) {
    map.entrySet().stream()
      // ...
      .forEach(e -> System.out.println(e.getKey() + ":" + e.getValue()));
}
Posted by: Guest on March-10-2020

Code answers related to "iterate hashmap in java 8 using stream"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language