Answers for "how to loop through hashmap in java to get the key value"

31

java iterate through hashmap

for (Map.Entry<String, String> entry : yourHashMap.entrySet()) {
	System.out.println(entry.getKey() + " = " + entry.getValue());
}
Posted by: Guest on April-13-2020
6

how to iterate hashmap in java

for (Map.Entry<String, String> entry : yourHashMap.entrySet()) {
	System.out.println(entry.getKey() + " = " + entry.getValue());
}

map.forEach((k, v) -> {
    System.out.format("key: %s, value: %d%n", k, v);
});
Posted by: Guest on June-06-2020

Code answers related to "how to loop through hashmap in java to get the key value"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language