Created
May 30, 2017 10:18
-
-
Save luanvuhlu/4c1546eb305107715c09f603a6394257 to your computer and use it in GitHub Desktop.
Iterator map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Map<String, String> map = ... | |
for (Map.Entry<String, String> entry : map.entrySet()) | |
{ | |
System.out.println(entry.getKey() + "/" + entry.getValue()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment