/**
@author : Î÷Ò°ÄÎÁô
@blog£º
*/
·½·¨Ò»£º
//JSONÊý¾Ý£º { data1 : "ÕâÊÇ1", data2 : "ÕâÊÇ2", data3 : "ÕâÊÇ3" } //»ñÈ¡data1µÄÊý¾Ý String data1 = json.getString("data1");·½·¨¶þ£º
//JSONÊý¾Ý£º { data : { title : "±êÌâ", name : "Ãûǰ", content : "ÄÚÈÝ" } } //»ñÈ¡titleµÄÊý¾Ý JSONObject item = json.getJSONObject("data"); String title = item.getString("title"); //»ñÈ¡titleµÄÊý¾Ý£¨½á¹ûºÍÒ»Ïàͬ£© String title = json.getJSONObject("data").getString("title");·½·¨Èý£º
//JSONÊý¾Ý£º { data : { world : { japan : "ÈÕ±¾", america : "¥¢¥á¥ê¥«", china : "Öйú" } } } //»ñÈ¡japanµÄÊý¾Ý String japan = json.getJSONObject("data").getJSONObject("world").getString("japan");·½·¨ËÄ£º
//JSONÊý¾Ý£º { datas : [ { name : "Ãûǰ1", age : "Äêýh1" }, { name : "Ãûǰ2", age : "Äêýh2" }, { name : "Ãûǰ3", age : "Äêýh3" } ] } //Êý×é JSONArray datas = json.getJSONArray("data"); for (int i = 0; i < datas.length(); i++) { JSONObject data = datas.getJSONObject(i); getString("name"); getString("age"); } //»ñÈ¡µÚÒ»×éµÄnameµÄÊý¾Ý£¬½á¹ûΪ Ãûǰ1 String name = json.getJSONArray("datas").getJSONObject(0).getString("name");²Î¿¼£º
-2015/10/9-
-End-
¡¡