JSONObject
創(chuàng)建
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(/* 索引 */);