如何在android中的json对象中处理响应

时间:2014-09-24 14:02:26

标签: android json response jsonobject

我收到了这个回复,我不知道如何处理没有数组:

{
    "1": {
        "entity_id": "1",
        "attribute_set_id": "4",
        "type_id": "simple"
    },
    "2": {
        "entity_id": "2",
        "attribute_set_id": "4",
        "type_id": "simple"
    },
    "5": {
        "entity_id": "5",
        "attribute_set_id": "4",
        "type_id": "simple"
    }
}

建议表示赞赏。

1 个答案:

答案 0 :(得分:0)

http://www.tutorialspoint.com/android/android_json_parser.htm

通过这个进行JSON解析。

你得到像JsonObject一样的

JSONObject result=new JSONObject("your result"); //your json value as parameter
JsonObject obj= originalObject.getString("1");