2016-04-02 78 views
-1

我應該使用什麼來存儲多個圖像,我從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

使用ArrayList<>();它比普通數組更靈活;

相關問題