如何使用json结构在android中执行json解析器

时间:2017-01-25 12:20:15

标签: json

enter image description here

我有像图像所示的json结构。我应该如何使用jsonparser?

2 个答案:

答案 0 :(得分:0)

像这样使用

String data;//your entire JSON data as String


        try {
            JSONObject object = new JSONObject(data);
            String status = object.getString("status");
            String response = object.getString("response");
        } catch (JSONException e) {
            e.printStackTrace();
        }

答案 1 :(得分:0)

像您的JSON一样创建模型类 并使用GSON library将您的json解析为模型。