Android - 获取没有名字的数组

时间:2016-02-25 15:17:22

标签: java android android-studio android-json

我明白我所提供的内容已经是一个阵列,但我仍然不确定在这里要改变什么。

我有这个正在返回数据但是我不知道如何处理数组以将值输入到地图中。

protected Void doInBackground(Void... params) {
        // Create an array
        arraylist = new ArrayList<HashMap<String, String>>();
        // Retrieve JSON Objects from the given URL address
        jsonobject = JSONfunctions
                .getJSONfromURL("http://www.mywebsite.club/api/coffees");

        try {
            // Locate the array name in JSON
            jsonarray = jsonobject.getJSONArray("coffees");

            for (int i = 0; i < jsonarray.length(); i++) {
                HashMap<String, String> map = new HashMap<String, String>();
                jsonobject = jsonarray.getJSONObject(i);
                // Retrive JSON Objects
                map.put("title", jsonobject.getString("title"));
                map.put("brand", jsonobject.getString("brand"));
                map.put("price", jsonobject.getInt("price"));
                map.put("brandlogo", jsonobject.getString("brandlogo"));
                // Set the JSON Objects into the array
                arraylist.add(map);
            }
        } catch (JSONException e) {
            Log.e("Error", e.getMessage());
            e.printStackTrace();
        }
        return null;
    }

1 个答案:

答案 0 :(得分:1)

根据您的回复,我没有找到 coffees 属性作为数组名称,在您的json响应中,您只有没有属性名称的数组。所以你不需要从响应中获取json对象,无论你的响应字符串只是从那里得到json数组,

protected Void doInBackground(Void... params) {
    // Create an array
    arraylist = new ArrayList<HashMap<String, String>>();
    // Retrieve JSON Array from the given URL address
    jsonarray = new JSONArray(JSONfunctions.getJSONfromURL("http://www.mywebsite.club/api/coffees"));

    try {
         if(jsonarray != null)
         {

          for (int i = 0; i < jsonarray.length(); i++) {
            HashMap<String, String> map = new HashMap<String, String>();
            jsonobject = jsonarray.getJSONObject(i);
            // Retrive JSON Objects
            map.put("title", jsonobject.getString("title"));
            map.put("brand", jsonobject.getString("brand"));
            map.put("price", jsonobject.getInt("price"));
            map.put("brandlogo", jsonobject.getString("brandlogo"));
            // Set the JSON Objects into the array
            arraylist.add(map);
          }
       }
    } catch (JSONException e) {
        Log.e("Error", e.getMessage());
        e.printStackTrace();
    }
    return null;
}