Skip to content

Instantly share code, notes, and snippets.

@luanvuhlu
Created May 30, 2017 10:18
Show Gist options
  • Save luanvuhlu/4c1546eb305107715c09f603a6394257 to your computer and use it in GitHub Desktop.
Save luanvuhlu/4c1546eb305107715c09f603a6394257 to your computer and use it in GitHub Desktop.
Iterator map
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