android解析HashMap格式的json

dsxdsxdsx0發表於2018-03-06

android解析HashMap格式的json
這種格式的json以前遇到的比較少,所以索性寫篇部落格記錄下是如何解析這種格式的json

因為是HashMap格式,檢視資料型別,所以可以直接定義一個HashMap,Map<String, Integer> assitNumMap = new HashMap<String, Integer>(), 用來承載HashMap的json,接下來需要遍歷HashMap, 因為很簡單,直接展示解析的程式碼

  String code = response.optString("code");
        if("1".equals(code)) {
            JSONObject data = response.optJSONObject("data");
            Map<String,Integer> assitNumMap = new HashMap<>();
            if(data != null) {
                Iterator iterator = data.keys();
                while (iterator.hasNext()){
                    String key = iterator.next().toString();
                    Integer value = data.optInt(key);
                    assitNumMap.put(key, value);
                }
            }
複製程式碼

這種是最簡單的HashMap格式的json,現在來看一下有列表的HashMap格式的json

android解析HashMap格式的json

這種格式的json的HashMap的key對應的value是一個列表,列表中是一個實體,所以必須先建立一個實體HashBean,set和get方法就不浪費篇幅了

public static class HashBean{
        private String custNo;
        private String memberLogo;
        private String memberNick;
        private String isHead;
        private String payStatus;
        private String createTime;
    }
複製程式碼

後面建立一個HashMap用來承載json,Map<String,HashBean> hashMap = new HashMap<>();

然後Iterator iterator = data.keys(), while (iterator.hasNext())進行遍歷,因為實體的是一個list,所以建立一個List hashList = new ArrayList<>(),去裝載遍歷的資料,詳情看程式碼

String code = response.optString("code");
        if("1".equals(code)){
            JSONObject data = response.optJSONObject("data");
            if(data != null){
                Iterator iterator = data.keys();
                while (iterator.hasNext()){
                    List<HashBean> hashList = new ArrayList<>();
                    OrderHelpBean orderHelpBean = new OrderHelpBean();
                    String key = iterator.next().toString();
                    JSONArray list =  data.optJSONArray(key);
                    if(list != null && list.length()>0){
                        for(int i=0;i<list.length();i++){
                            JSONObject temp = list.optJSONObject(i);
                            if (temp != null) {
                                HashBean hashBean = new HashBean();
                                hashBean.setGroupId(temp.optString("groupId"));
                                hashBean.setActId(temp.optString("actId"));
                                hashBean.setOrderId(temp.optString("orderId"));
                                hashBean.setCreateTime(temp.optString("createTime"));
                                hashBean.setCustNo(temp.optString("custNo"));
                                hashBean.setMemberLogo(temp.optString("memberLogo"));
                                hashBean.setMemberNick(temp.optString("memberNick"));
                                hashBean.setIsHead(temp.optString("isHead"));
                                hashList.add(helpGroupBean);
                            }
                        }
                        hashBean.setHashBean(hashList);
                    }
                    hashMap.put(key,hashBean);
                }
複製程式碼

以上便是HashMap這種格式的json解析方法,記錄下來,以免後面忘掉了,大寫的尷尬。。。。。

相關文章