Skip to content

Instantly share code, notes, and snippets.

@e2kaneko
Created March 29, 2011 00:10
Show Gist options
  • Save e2kaneko/891591 to your computer and use it in GitHub Desktop.
Save e2kaneko/891591 to your computer and use it in GitHub Desktop.
Java - 拡張For文でMapをループ
for(Map.Entry<String, String> entry : map.entrySet()) {
System.out.println(entry.getKey());
System.out.println(entry.getValue());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment