1

我正在尝试解析一个 json 数组“itemList”:

 {
    "itemsCount": "1309",
    "itemList": [
        { name: "xxx",
          id: "01"
        },
        { name: "yyy",
          id: "02"
        }
      ]
    }

但是当我使用以下代码时,我得到了“json exception:no value for”。

 String json = jsonParser.makeHttpRequest(URL_ALBUMS, "GET", params);
Log.d("Albums JSON: ", "> " + json);                    
try {   
     jsonObject = new JSONObject().getJSONObject("itemList");
     albums = jsonObject.getJSONArray("itemList"); 
         if (albums != null) {

    for (int i = 0; i < albums.length(); i++) {
    JSONObject c = albums.getJSONObject(i);

    String id = c.getString(TAG_ID);
    String name = c.getString(TAG_NAME);


    HashMap<String, String> map = new HashMap<String, String>();

    map.put(TAG_ID, id);
        map.put(TAG_NAME, name);


    albumsList.add(map);
                }
            }else{
                Log.d("Albums: ", "null");
            }

        } catch (JSONException e) {
            e.printStackTrace();
        }

        return null;
    }

在日志中我能够看到 json 值。我在以下几行中遇到错误。

jsonObject = new JSONObject().getJSONObject("itemList");
 albums = jsonObject.getJSONArray("itemList"); 

我是新手。帮我解决它。提前致谢

4

3 回答 3

1

您需要发送 json 字符串来创建 jsong 对象。

jsonObject = new JSONObject(json);
 albums = jsonObject.getJSONArray("itemList"); 
于 2013-09-12T09:57:10.027 回答
0

如果此任务不是教育/学术任务,我建议您使用JSON Mapper。例如杰克逊GSON。像这样“手动”解析 JSON 只是浪费时间和代码,而且更容易出错。

http://jackson.codehaus.org/

从字面上看,用映射器做同样的事情需要两行代码。

于 2013-09-12T09:57:24.990 回答
0

试试这个方法

 jsonObject = new JSONObject(json);
于 2013-09-12T09:57:35.013 回答