将 Json 对象存储到 HashMap 中

Storing a JsonObject into an HasMap

我低于 jsonResponse。

在每次响应中键和值都会更改。

我想存储 count & previousCountDay ,键和值在 HashMap.

Json 响应:

{
    "count": {
        "2018-03-28 18": 55,
        "2018-03-28 19": 48,
        "2018-03-28 20": 41,
        "2018-03-28 21": 31,
        "2018-03-28 22": 32,
        "2018-03-28 23": 26,
        "2018-03-29 00": 20,
        "2018-03-29 01": 16,
        "2018-03-29 02": 12,
        "2018-03-29 03": 0
    },
    "previousCountDay": {
        "2018-03-27 18": 40,
        "2018-03-27 19": 59,
        "2018-03-27 20": 53,
        "2018-03-27 21": 48,
        "2018-03-27 22": 36,
        "2018-03-27 23": 40,
        "2018-03-28 00": 37,
        "2018-03-28 01": 14,
        "2018-03-28 02": 29,
        "2018-03-28 03": 1
    }, 
    "noOfIntervals": 10,
    "range": [
        "18",
        "19",
        "20",
        "21",
        "22",
        "23",
        "00",
        "01",
        "02",
        "03"
    ]
}

通过使用 GSON,我得到 JSON 响应,但我只存储 range 因为它进入 JSON 数组,通过 range 我得到的大小count & previousCountDay.

下面是我的ActivityClass:

 private void JsonRequestOrderVelocity(String dmhw) {
    utils.showDialog();

    String url = Constants.VELOCITY_API;
    Log.e("URL", "" + url);

    JsonObjectRequest request = new JsonObjectRequest(url, null,
            response -> {
                Log.e("onResponse",""+response);
                try {
                    Gson gson = new Gson();
                    Type listType = new TypeToken<OrderVelocityPojo>() {
                    }.getType();

                    orderVelocityPojo = gson.fromJson(response.toString(), listType);

                    Log.e("SIZE",""+orderVelocityPojo.getRange().size());

                    JSONObject object = response.getJSONObject("count");

                    Map<String, Integer> countMap = new HashMap<String, Integer>();

                    //store keys and values in HashMap.
                    for(int i=0;i<orderVelocityPojo.getRange().size();i++){

                       countMap.put( ); 

                    }



                } catch (Exception e) {
                    Log.e("Exception",""+e);
                    utils.hideDialog();
                    e.printStackTrace();

                }
                utils.hideDialog();

            }, error -> {

        Log.e("error",""+error.getMessage());
        utils.hideDialog();
    });
    request.setRetryPolicy(new DefaultRetryPolicy(
            MY_SOCKET_TIMEOUT_MS,
            DefaultRetryPolicy.DEFAULT_MAX_RETRIES,
            DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
    AppController.getInstance(this).addToRequestQueue(request);
}

OrderVelocityPojo Pojo class :

import java.util.List;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class OrderVelocityPojo {

    @SerializedName("noOfIntervals")
    @Expose
    private Integer noOfIntervals;

    @SerializedName("range")
    @Expose
    private List<String> range = null; 


    public Integer getNoOfIntervals() {
        return noOfIntervals;
    }

    public void setNoOfIntervals(Integer noOfIntervals) {
        this.noOfIntervals = noOfIntervals;
    }

    public List<String> getRange() {
        return range;
    }

    public void setRange(List<String> range) {
        this.range = range;
    }
}

您可以为此使用 Gson 库。 您可以尝试将 json 对象转换为 hashmap。在这里,您将提供 typeToken 作为您的 json 类型值。

Map<String, Object> hashmap = new Gson().fromJson(
    jsonString, new TypeToken<HashMap<String, Object>>() {}.getType()
);

您也可以使用JSONObject的迭代键手动添加数据。

这是示例代码。

        HashMap<String, String> count = new HashMap<>();
        HashMap<String, String> previousCountDay = new HashMap<>();
        try {
            JSONObject mJsonObjectMain = new JSONObject("your json string");
            JSONObject mJsonObjectCount = mJsonObjectMain.getJSONObject("count");
            Iterator a = mJsonObjectCount.keys();
            while (a.hasNext()) {
                String key = (String) a.next();
                // loop to get the dynamic key
                String value = (String) mJsonObjectCount.get(key);
                System.out.print("key : " + key);
                System.out.println(" value :" + value);
                count.put(key, value);
            }

            JSONObject mJsonObjectPreviousCount = mJsonObjectMain.getJSONObject("previousCountDay");
            //do same as above
        } catch (JSONException e) {
            e.printStackTrace();
        }

最终代码:

HashMap<String, Integer> count = new HashMap<>();
                     try {
                        JSONObject object = response.getJSONObject("count");
                        Iterator a = object.keys();
                        while (a.hasNext()) {
                            String key = (String) a.next();
                            // loop to get the dynamic key
                            Integer value = (Integer) object.get(key);
                            Log.e("count : ","Keys :"+ key+"   Values :"+value);
                            count.put(key, value);
                        }
                    } catch (JSONException e) {
                        e.printStackTrace();
                    }