//JSON数组里面的具体-JSON对象
JSONObject jsonObject2 = jsonArray.getJSONObject(i);
String id=jsonObject2.optString(“id”,null);
String name=jsonObject2.optString(“name”,null);
//
日志打印结果
Log.d(“json”,“解析的结果===”+“id:”+id+","+“name:”+name);
}
Log.d(“json”,"===============================================================");
int total = jsonObject1.optInt(“total”,0);
Log.d(“json”,“解析的结果===”+“total:”+total);
boolean success = jsonObject1.optBoolean(“success”,false);
Log.d(“json”,“解析的结果===”+“success:”+success);
} catch (JSONException e) {
e.printStackTrace();
}
日志打印结果:
json: jsonArray:[{“id”:“001”,“name”:“小猪”},{“id”:“002”,“name”:“小猫”},{“id”:“003”,“name”:“小狗”}]
json: 解析的结果===id:001,name:小猪
json: 解析的结果===id:002,name:小猫
json: 解析的结果===id:003,name:小狗
json: ===============================================================
json: 解析的结果===total:3
json: 解析的结果===success:true
3.例子:以对象嵌套子对象,子对象再嵌套数据
{
“calendar”:{
“calendarlist”:[
{
“id”:“001”,
“name”:“小猪”
},
{
“id”:“002”,
“name”:“小猫”
}
]
}
}
这里的数据最外层只有一个键值对:calendar对应对象value1,value1里面也是只有一个键值对:calendarlist对应数组数据ArrayValue,ArrayValue里面又两个有序对象,这两个有对象里面都有两个无序的数据
解析jsonObject代码
try {
JSONObject jsonObject1 = new JSONObject(jsonStr);
Log.d(“json”, “最外层对象:” + jsonObject1);
JSONObject jsonObject2 = jsonObject1.getJSONObject(“calendar”);
Log.d(“json”, “第二层对象:” + jsonObject2);
JSONArray jsonArray1 = jsonObject2.getJSONArray(“calendarlist”);
Log.d(“json”, “数组:” + jsonArray1);
for (int i=0;iJSONObject jsonObject3 = jsonArray1.getJSONObject(i);
String id=jsonObject3.optString(“id”,null);
String name=jsonObject3.optString(“name”,null);
Log.d(“json”,“解析的结果===”+“id:”+id+","+“name:”+name);
}
数组:" + jsonArray1);
for (int i=0;iJSONObject jsonObject3 = jsonArray1.getJSONObject(i);
String id=jsonObject3.optString(“id”,null);
String name=jsonObject3.optString(“name”,null);
Log.d(“json”,“解析的结果===”+“id:”+id+","+“name:”+name);
}