-1

下面是我获取“id”时解析 JSON 的代码。如果我不提供 id 则 JSON 数组将不会显示。我如何显示没有 id 的 JSON?

如果我没有在 JSON 文件中给出 id,我如何解析没有“id”的 JSONArray,那么数组将不会显示有必要在 JSON 文件中给出“id”???

这个 json 数组不显示

 {
"status": 1,
"data": [
    {
        "title": "Elementary"
    },
    {
        "title": "Middle"
    },
    {
        "title": "High"
    },
    {
        "title": "Atypical"
    }
]
}

这个 json 数组将显示

{
"status": 1,
"data": [
    {
        "id": "1",
        "title": "Elementary"
    },
    {
        "id": "2",
        "title": "Middle"
    },
    {
        "id": "3",
        "title": "High"
    },
    {
        "id": "4",
        "title": "Atypical"
    }
]
}

代码:

        JSONObject json2 = new JSONObject(str);

        status = json2.getString("status");
        if (status.equals("1")) {
        JSONArray school = json2.getJSONArray("data");
        for (int i = 0; i < school.length(); i++) {
            JSONObject object = school.getJSONObject(i);


                     //  Category_ID.add(Long.parseLong(object.getString("id")));
            Category_name.add(object.getString("title"));

        }
4

3 回答 3

0

我想您希望您的代码适用于两个 JSON 示例。

您可以检查“id”是否存在,然后进行相应的解析。

您可以使用以下代码执行此检查。

String id = object.optString("id"); 
//JSONObject.optString("id") will return id's value if it exists or else will return empty string.
if(!"".equals(id)){
       Category_ID.add(Long.parseLong(id));
       //this code will run only when your JSON contains id       
}
else 
{
     //this code will run when your JSON doesn't have id field.
     Category_ID.add();
}
于 2013-08-20T12:36:25.337 回答
0

在解析 json 时尝试此代码:

if(object.has("id"))
{
Category_ID.add(Long.parseLong(object.getString("id")));
}
else
{
// add default id
}


希望这对你有用。

于 2013-08-20T12:54:27.100 回答
0

您正在此处访问 id 属性:

Category_ID.add(Long.parseLong(object.getString("id")));

当它不存在时,这将引发异常。

于 2013-08-20T12:28:02.960 回答