简体   繁体   中英

How to parse this Json structure in Java

I have the following Json structure:

{
    "Response": ["2014", "2015"],
    "Error": false,
    "ErrorDetails": null
}

How can I parse the value inside response?

I usually use this code:

JSONArray arr = obj.getJSONArray("Response");
for (int i = 0; i < arr.length(); i++)
{
    String post_id = arr.getJSONObject(i).getString(???);
    ......
}

But I can't use getString in this case

您应该直接调用arr.getString(i)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM