/ Published in: Java
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
JSONArray ar = new JSONArray(jsonString); for (int i = 0; i < ar.length(); i++) { JSONObject child = ar.getJSONObject(i); // do stuff with child }