错误org.json.JSONException:索引2超出范围

时间:2018-07-25 16:43:14

标签: android json android-volley

您好,我简单的Json是,并且我遇到错误org.json.JSONException:索引2超出范围可以帮助我解决此问题吗? :

[
{
    "cat_id": 593,
    "title": "آلرژی و ایمونولوژی",
    "sub_cat": [
        {
            "cat_id": 594,
            "cat_title": "متخصص",
            "cat_parent_fk": 593
        },
        {
            "cat_id": 595,
            "cat_title": "فوق تخصص",
            "cat_parent_fk": 593
        }
    ]

并使用此代码获取此json,但我有一些错误,仅显示我的json> 15项目中的两项:

JsonArrayRequest jsonArrayRequest = new JsonArrayRequest(Request.Method.GET, url, null, new Response.Listener<JSONArray>() {
        @Override
        public void onResponse(JSONArray response) {
            for (int i = 0; i < response.length(); i++) {
                try {
                    Cats cats = new Cats();
                    JSONObject jsonObject = (JSONObject) response.get(i);
                    String cat_id = jsonObject.getString("cat_id");
                    String title = jsonObject.getString("title");
                    String image_add = jsonObject.getString("image_add");
                    String image = jsonObject.getString("image");

                   JSONArray jsonArray = jsonObject.getJSONArray("sub_cat");


                    for (int j = 0; j < jsonArray.length(); j++) {
                        JSONObject object = jsonArray.getJSONObject(i);
                        int sub_cat_id = object.getInt("cat_id");
                        String sub_cat_title = object.getString("cat_title");
                        int sub_parent_fk = object.getInt("cat_parent_fk");
                        Log.i("log", "onResponse: "+ sub_cat_id + sub_cat_title + sub_parent_fk);
                    }


                    cats.setCat_id(cat_id);
                    cats.setTitle(title);
                    cats.setImage(image);
                    cats.setImage_add(image_add);
                    list.add(cats);
                    catsAdapter.notifyDataSetChanged();
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }

1 个答案:

答案 0 :(得分:2)

此处应使用i代替j

JSONObject object = jsonArray.getJSONObject(j);
//                                          ^^

让我们假设您的响应包含3个json对象,每个sub_cat具有2个对象,因此在解析response的第3个对象时(当i为2时),但是{{1} }有2个对象(索引0,1),所以知道(如上所述),它将尝试从2个对象的数组(sub_cat)中提取第3个对象,因此请使用

sublist