Last active
December 30, 2015 05:19
-
-
Save ayato-p/7781359 to your computer and use it in GitHub Desktop.
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
Set<String> keys = map.keySet(); | |
for (String key : keys) { | |
//some condes | |
} | |
//↑が↓になった | |
Set<String> keys = map.keySet(); | |
String[] keyarray = keys.toString().split(","); | |
for(int i=0; i<keyarray.length; i++){ | |
//soem codes | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment