1

我在 Android 中有一个项目,这里有我需要解析的 JSON,以便我可以使用数据:(我尝试在 JSONLint.com 验证我的 JSON,一切都很好)

{
    "traces": [
        "{\"lat\": \"42.842097\", \"lng\": \"-31.258422\", \"idTrace\": \"444e8079\"}",
        "{\"lat\": \"56.842097\", \"lng\": \"-73.258422\", \"idTrace\": \"088b591a\"}"
    ]
}

问题是当我尝试在 JSONArray 中获取 2 个 JSONObjects 时总是出错。

这是我的代码片段:

     (...)

     StringBuilder builder = new StringBuilder();

     for (String line = null; (line = reader.readLine()) != null;) 
     {
          builder.append(line).append("\n");
     }


    JSONObject result = new JSONObject(builder.toString());
    JSONArray list = result.getJSONArray("traces");


    try{
        for (int i = 0; i < list.length(); i++)
            {     //this is where I get the error "JSONArray[0] is not a JSONObject"
              JSONObject jsonObject = list.optJSONObject(i); 


              //String id = jsonObject.getString("idTrace");
              //String lat = jsonObject.getString("lat");
              //String lng = jsonObject.getString("lng");

                 (...)
             }
      (...)

我搜索了很多以找出问题所在,但人们似乎在做与我完全相同的事情......我找不到它不起作用的原因!

谢谢您的帮助!

4

2 回答 2

1

这个 JSON 是从您控制的 API 中返回的吗?我认为破坏性的是 JSONArray 中项目周围的引号 - JSON 应该如下所示:

{"traces": [
    {"lat": "42.842097", "lng": "-31.258422", "idTrace": "444e8079"},
    {"lat": "56.842097", "lng": "-73.258422", "idTrace": "088b591a"} 
]}

请注意,每个 JSONObject 周围没有引号。你现在拥有的更像是一个字符串数组......

于 2013-03-17T19:47:19.707 回答
0

这是你的拼写错误,

liste.optJSONObject(i); this should be list.optJSONObject(i);
于 2013-03-17T18:48:21.843 回答