JSONObject和JSONArray

前端之家收集整理的这篇文章主要介绍了JSONObject和JSONArray前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
JSONArray cookArray = new JSONArray();//json数组
	
	JSONObject object = new JSONObject();//json对象
	
	cookArray.put(object);//把json对象放在json数组中
	
	JSONObject result = new JSONObject();//json对象
	
	result.put("cookArray",cookArray);//把json数组放在json对象中
原文链接:https://www.f2er.com/json/289335.html

猜你在找的Json相关文章