前端之家收集整理的这篇文章主要介绍了
学习JSONObject/JSONArray,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
学习JSONObject/JSONArray
package test;
import java.util.Map;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
public class TestJson {
public static void main(String[] args) {
String arrays="[{name1:{name2:{name3:'value1',name4:'value2'}}},{}]";
JSONArray getJSONArray=JSONArray.fromObject(arrays);
JSONObject getJsonObj =getJSONArray.getJSONObject(0);
String result=getJsonObj.getJSONObject("name1").getJSONObject("name2").getString("name4");
System.out.println("取出name4的值: "+result);
JSONObject jsonobject=new JSONObject();
jsonobject.put("key","value");
JSONArray jsonarray=new JSONArray();
jsonarray.add(jsonobject);
Map<String,String> strmap=new JSONObject();
}
}
@H_
403_63@
原文链接:https://www.f2er.com/json/288921.html