繁体   English   中英

在Android中解析JSON响应“无法将org.json.JSONObject类型的响应转换为JSONArray”

[英]Parse JSON response in android “response of type org.json.JSONObject cannot be converted to JSONArray”

我已经看到周围有很多问题,但是我想我缺少一个我找不到的细节。

我作为响应得到的字符串包含在以下错误中:

12-28 10:25:14.402: W/System.err(2133): org.json.JSONException: Value
{"status":"ok","userTier":"developer","total":1722082,"startIndex":1,"pageSize":5,"currentPage":1,"pages":344417,"orderBy":"newest",
"results":[{"webTitle":"AirAsia flight loses contact with air traffic control between Indonesia and Singapore","webPublicationDate":"2014-12-28T09:06:55Z","sectionName":"World news","sectionId":"world","id":"world\/live\/2014\/dec\/28\/airasia-flight-loses-contact-with-air-traffic-control-on-route-from-indonesia-to-singapore","webUrl":"
...  at response of type org.json.JSONObject cannot be converted to JSONArray

我的代码是

JSONObject jObject = new JSONObject(result);// result is the sting response presented above
JSONArray jArray = jObject.getJSONArray("response");

response键是JSONObject,您需要使用getJSONObject代替当前方法。

我看到的唯一JSONArray是结果键。 您必须使用result键,或者需要使用getJSONObject()-Method,如gio所述。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM