從網絡服務器中得到響應:
response = [{"result":"false"}]
不知道應該怎麼解析它?
JSONArray jsonArray = response.getJSONArray();
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject jsonObject = jsonArray.getJSONObject(i);
String result = jsonObject.getString("result");
}
順便給你推薦一個查看json數據的網站:
http://www.json.org.cn/tools/JSONEditorOnline/index.htm