android JSONException index 1 out of range [0..1] (Parse 2 json arrays inside 1 loop)

前端 未结 3 1963
失恋的感觉
失恋的感觉 2021-01-29 10:24

I have code like this, the value of jArrAnswer is

[{\"answer\":\"Yes\"},{\"answer\":\"No\"},{\"answer\":\"maybe\"},{\"answer\":\"yrg\"}]

3条回答
  •  耶瑟儿~
    2021-01-29 11:17

    You are iterating the for loop over jArrAnswer while your fetching the index i over jArrAnswerid.

    Check and make sure that the jArrAnswerid.size() is equal to the jArrAnswer.size().

    Print the jArrAnswerid.size() and check.

提交回复
热议问题