在这个示例中,我有一个只有一个数组的JSON文件(如您所见,该数组没有名称):["Cream","Cheese","Milk","Powder Milk","Blue Cheese","Gouda Cheese"]我如何才能将此数组放入Android Studio中的数组或arraylist中?提前非常感谢您!这是我正在创建的用于获取此数组的函数,但我无法完成它,我仍然是处理json文件的菜鸟。 public void getProducts() { JsonArrayRequest myresponseArray = new JsonArrayRequest(url, new Response.Listener<JSONArray>() { @Override public void onResponse(JSONArray response) { try { for(int i = 0 ; i < response.length();i++){ JSONArray responseArray = response.getJSONArray(i); } } catch (JSONException e) { e.printStackTrace(); } } }, new Response.ErrorListener() { @Override public void onErrorResponse(VolleyError error) { } });}现在,我想将此“ responseArray”添加到我在MainActivity上创建的产品数组列表中ArrayList<String> products = new ArrayList<String>();
1 回答
ibeautiful
TA贡献1993条经验 获得超5个赞
尝试一下 geString(int index)
for (int i = 0; i < responeArray.length(); i++) {
products.add( responseArray.getString(i) );
}
添加回答
举报
0/150
提交
取消