一 符号的认知
JSONObject {} 双括号表示对象
JSONArray [] 中括号表示数组 [{} {}]
"" 双引号内是属性或值
: 冒号表示后者是前者的值
二 Json与string的转换
1.JSONObject转string: JSON.toJSONString(JSONObject)
2.string转JSONObject: JSON.parseObject(string)
3.string转JSONArray: JSON.parseArray(string)
4.JSONArray转string: JSONArray.toString()
5.JSONObject从JSONArray取值:JSONArray.getJSONObject(i);
6.JSONObject中放JSONArray:JSONObject.put("JSONArray", JSONArray);
7.JSONArray中放JSONObject:JSONArray.add(JSONObject);