json数组去重
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json数组去重相关的知识,希望对你有一定的参考价值。
//名字去重 Map<String,Integer> map=new HashMap<String,Integer>(); for(int i=0;i<jows.size();i++){ JSONObject jo = (JSONObject) jows.get(i); map.put(jo.get("serviceType").toString(),0); } for(int i=0;i<jows.size();i++){ JSONObject jo1 = (JSONObject) jows.get(i); if(map.containsKey(jo1.get("serviceType"))){ map.put(jo1.get("serviceType").toString(),Integer.parseInt(jo1.get("amount").toString())+map.get(jo1.get("serviceType"))); } } for(Map.Entry<String, Integer> entry : map.entrySet()) { JSONObject jo2 =new JSONObject(); jo2.put("serviceType", entry.getKey()); jo2.put("amount", entry.getValue()); jows1.add(jo2); }
以上是关于json数组去重的主要内容,如果未能解决你的问题,请参考以下文章