[ {
"question_id": 13,
"creation_date": 10,
"name": " certain degrees",
"tags": [
"android",
"sensor"
],
.....
...}
]
タグ配列を取得したいAPIは次のとおりです。タグ配列にはインデックスと値のみが含まれています。配列オブジェクトを使用して配列を取得し、最終的に配列リストに格納したいのですが、エラーが発生しました。
02-20 15:45:37.323: I/System.out(1165): org.json.JSONException: Value android at 0 of type java.lang.String cannot be converted to JSONObject
誰でもこの問題を解決するのを手伝ってくれませんか。
tagarray = questionobj.getJSONArray("tags");
for(int j=0;j<tagarray.length();j++){
//tagobject = tagarray.getJSONObject(j);//..if i comment this line the full array list is displaying but i need for each question allocated tags to display..am i clear..
//if(tagobject!=null){
tagname.add(tagarray.getString(j));
///tagname.add(0, null);
//}
}