因此,我正在开发一个 Android 应用程序,该应用程序将从远程服务器(运行 PHP)读取 JSON 响应。在我尝试从较大的 JSON 字符串中读取数组数据项之前,一切正常。下面是 Eclipse 在尝试将对象解析到数组时抛出的错误。有人有想法么?JSONLint 验证这个数组是有效的 JSON,所以我不确定这里有什么问题。
注意 - 它确实让我将此元素解析为 JSONObject,但我不清楚如何将它从它获取到我需要的关联数组。我确实看到 JSONObject 有一个 ToJSONArray 方法,但它需要一个数组键列表,但这些是可变的,在我解析该死的数组之前我不会知道它们是什么!任何帮助表示赞赏。
public JSONArray parseJson(String jsonString) {
JSONArray data = new JSONArray();
try {
JSONObject json = new JSONObject(jsonString);
success = json.getBoolean("success");
object = json.getString("object");
message = json.getString("message");
data = json.getJSONArray("data")
} catch (JSONException e) {
Log.e("ServerResponse::parseJson", e.getMessage());
e.printStackTrace();
success = false;
message = "Error parsing return JSON data. " + e.getCause();
}
return data;
}
这是我要解析的 JSON 数组:
{
"1": {
"country_of_origin": "US",
"genre": "Action",
"date_finished": "2005-06-17",
"dtimemod": "2009-12-03 14:29:59",
"netflix_rating": "82",
"table": "movies",
"rotten_rating": "82",
"format": "Live Action",
"date_begun": "2005-06-17",
"id": "3055",
"dtimecre": "2009-12-03 14:29:59",
"name": "Batman Begins",
"user_id": "mcenci",
"year": "2005",
"actors": "Christian Bale, Michael Caine, Liam Neeson, Morgan Freeman, Gary Oldman, Ken Watanabe, Katie Holmes, Cillian Murphy, Tom Wilkinson, Rutger Hauer, Sara Stewart, Richard Brake, Gus Lewis",
"rating": "100",
"extra_info": "Runtime: 140 min\n",
"public": "0",
"notes": "",
"key": "103",
"genre2": "Sci-Fi"
}
}