Android中的JSONObject

Android中的JSONObject

在这里,我想从json中获取数据,但是我只获得前两个对象的值(25,44),但id是50,60。我不知道这段代码有什么问题。

以下是服务器发出的我的回复:

{
"product": {
    "25": {
        "training": "First Name",
        "taken": null,
        "date": "1386737285",
        "body":"http://abc.xyz.in/video1.mp4",
        "image": "http://abc.xyz.in/video1.jpg"
    },
    "44": {
        "training": "Second Name",
        "taken": null,
        "date": "1389951618",
        "body":"http://abc.xyz.in/video2.mp4",
        "image":"http://abc.xyz.in/video2.jpg"
    },
    "50": {
        "training": "Third Name",
        "taken": null,
        "date": "1389971004",
        "body":"http://abc.xyz.in/video3.mp4",
        "image": "http://abc.xyz.in/video3.jpg"
    },
    "60": {
        "training": "Fourth Name",
        "taken": null,
        "date": "1390003200",
        "body": "http://abc.xyz.in/video4.mp4",
        "image": "http://abc.xyz.in/video4.jpg"
    }
  }
}


这是从json获取数据的代码:

 public String[] getDataFromResponse(String jsonProfileResponse,String secondParam,
        String attributeName ) {

    String[] attributeValue = null;
    try {
        json = new JSONTokener(jsonProfileResponse).nextValue();
        if (json instanceof JSONObject) {
            JSONObject jsonObject = (JSONObject) json;
            JSONObject jObj = jsonObject.getJSONObject(secondParam);
            System.out.println(jObj);
            Iterator<?> keys = jObj.keys();
            List<String> listitems = new ArrayList<String>();
            List<String> nids = new ArrayList<String>();
            while (keys.hasNext()) {
                nids.add(String.valueOf(keys.next()));
                JSONObject jsonObj = jObj.getJSONObject(String.valueOf(keys
                        .next()));
                System.out.println(jsonObj);
                listitems.add(jsonObj.getString(attributeName));
            }
            attributeValue = listitems.toArray(new String[0]);
                trainingId = nids.toArray(new String[0]);
        }

    } catch (JSONException ex) {
        ex.printStackTrace();
    }
    return attributeValue;

}


感谢您的考虑...

最佳答案

在hasNext内部,您调用了两次keys.next()

所以,代替

  nids.add(String.valueOf(keys.next()));
  JSONObject jsonObj = jObj.getJSONObject(String.valueOf(keys.next()));


你所要做的

  String currentKey = String.valueOf(keys.next());
  nids.add(currentKey);
  JSONObject jsonObj = jObj.getJSONObject(currentKey);

关于java - Android中的JSONObject,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21400067/

10-12 03:41