JSONObject
创建
JSONObject jsonBody = new JSONObject(jsonString);
查询
get()
getInt()
getLong()
getDouble()
getBoolean()
getString()
getJSONObject()
getJSONArray()
has()
isNull()
JSONArray
JSONArray photoJsonArray = photosJsonObject.getJSONArray("photo");
JSONObject photoJsonObject = photoJsonArray.getJSONObject(/* 索引 */);