JSONArray ar = new JSONArray(jsonString);
for (int i = 0; i < ar.length(); i++) {
JSONObject child = ar.getJSONObject(i);
// do stuff with child ...
↧