一. 客户端:org.json.JSONObject;类
1.JSONArray->JSONObject->String
JSONObject jsonObject1 = (JSONObject) jsonArray.get(i);//获取索引值为i的json
JSONObject jsonObject2= jsonObject1 .getJSONObject("test");//获取jsonObject1中test对应的jsonObject2
String str = jsonObject2.getString("name");
2.String->JSONArray/JSONObject
String str=""; JSONObject jsonAuctionItem = new JSONObject(str);
JSONArray jsonArray = new JSONArray(str);二.服务器端:net.sf.json.JSONObject;类
JSONObject jb = JSONObject.fromObject(str);原文链接:https://www.f2er.com/json/289691.html