在java中迭代JSONArray

时间:2017-11-21 07:40:21

标签: java arrays

我有一个JSONArray:

public JSNArray getItems() {
  JSONArray listjson = new JSONArray();
  JSONObject fnl_json = new JSONObject(); 
  //adding few items to fnl_json 
  listjson.add(fnl_json); 
  return fnal_json; 
}

我正在调用getItems函数,如何从被调用的函数中迭代fnl_json?

1 个答案:

答案 0 :(得分:1)

要迭代JSONArray,您可以执行以下操作:

JSONObject jsonObject = new JSONObject("jsonString");
JSONArray jsonArray = jsonObject.getJSONArray("arrayName");
for (int i = 0; i < jsonArray.length(); i++) {
   JSONObject explrObject = jsonArray.getJSONObject(i); // you will get the json object
   //do the stuff
}