Answers for "is there a way to iterate through a map without using iterator"

1

iterate map

Map<String, String> map = ...
for (Map.Entry<String, String> entry : map.entrySet()) {
    System.out.println(entry.getKey() + "/" + entry.getValue());
}
Posted by: Guest on May-19-2021

Code answers related to "is there a way to iterate through a map without using iterator"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language