gpt4 book ai didi

java - JSON索引2超出范围异常

转载 作者:行者123 更新时间:2023-12-01 09:04:33 25 4
gpt4 key购买 nike

{
"status": "true",
"value": {
"products": [
{
"id": "1",
"store_categories_id": "10",
"description": "Chicken Briyani",
"unit_price": "120",
"pro_descripaation": "",
"pro_image": ""
},
{
"id": "2",
"store_categories_id": "10",
"description": "Vegetable Thali",
"unit_price": "100",
"pro_descripaation": "",
"pro_image": ""
}
]
}
}

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

try{
JSONArray product_array = value_array.getJSONArray("products");
for (int i = 0; i < response.length(); i++) {
if (status.equals("true")) {
// progressDialog.dismiss();

Toast.makeText(getApplicationContext(), value, Toast.LENGTH_SHORT).show();
} else if (status.equals("true")) {

// progressDialog.dismiss();
JSONObject jsonobject = product_array.getJSONObject(i);

ProductList productList = new ProductList();

productList.setDescription(jsonobject.getString(Constants.KEY_PRODUCT_DESCRIPTION));

productList.setId(jsonobject.getString(Constants.KEY_PRODUCT_ID));
Log.v("ganesh","keyboard");
productListArray.add(productList);
adapter.notifyDataSetChanged();
}
}
} catch (JSONException exception) {
// progressDialog.dismiss();
Log.e("--JSON EXCEPTION--", exception.toString());
}

谁能帮我解决这个问题吗?

最佳答案

您的代码中有几处看起来不正确,但因为我没有完整的上下文,所以有两件事特别奇怪:

  1. 您的 for 循环从 0 到 response.length(),这可能比 product_array 中的对象还要多。因此,您可能会遇到 product_array.getJSONObject(i); 超出范围的异常,您可能需要使用 product_array.size()product_array.length(), depending on your import .
  2. 您的if..else if不正确。您检查两次 status.equals("true"),这意味着代码永远不会到达第二个 if

关于java - JSON索引2超出范围异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41393827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com