我应该使用什么来存储我从for循环中检索的多个图像?数组还是列表?我可以使用任何示例功能吗?下面是我获取数据的循环示例。
JSONObject mainObject = new JSONObject(response.toString());
JSONArray uniObject = mainObject.getJSONArray("result");
for(int i = 0; i < uniObject.length(); i++) {
JSONObject rowObject = uniObject.getJSONObject(i);
co.img1 = ipAddress +"img/store/" + rowObject.getString("store_banner");
}
答案 0 :(得分:0)
使用Property
它比普通数组更灵活;