Last active
July 24, 2016 03:26
-
-
Save nmschorr/401bcefcdca50eb2374d7cf6e2e62c16 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
JSONArray myJsonArry = new JSONArray(longJsonString); | |
List<Object> myArrayList = new ArrayList<Object>(toList(myJsonArry)); | |
Collection<Map<String,String>> mapsCol = new HashSet<Map<String,String>>(); | |
for (int i=0; i < myArrayList.size(); i++) { | |
mapsCol.add((HashMap<String, String>)myArrayList.get(i)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment