"age":22,
// "name":"aflyun",
// "hobby":["编程","看书","徒步","爬山","游泳"],
// "adderss":{"省份":"广东...","市":"惠州","国籍":"中国"}
// }
//创建 一个JsonObjec对象
JSONObject resJsonObj = new JSONObject();...;
//地址 map
JSONObject jsonAdress = new JSONObject();
jsonAdress.put("国籍", "中国").put("省份", "广东...").put("市", "惠州");
resJsonObj.put("adderss", jsonAdress);
//生成数组array
JSONArray jArray = new..."],"name":"aflyun","age":22,"hobby":["编程","看书","徒步","爬山","游泳"],"adderss":{"省份":"广东","市":"惠州","国籍":"中国