`
a729812804
  • 浏览: 42185 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

遍历List 按照类型分类组装map对象

    博客分类:
  • java
阅读更多

    private Map<String, List<A>> getMap(List<A> a,List<B> b)
            throws SQLException {
     
        Map<String,List<A>> retmap = new HashMap<String,List<A>>();
       
        Map midMap1 = new HashedMap();
       
        for (A obj : a) {
             
            midMap1.put("K_"+obj.getId(), obj);
        }
       
       
        for (B obj : b) {
             
            if(midMap1.get("K_"+obj.getId())!=null)
            {
           
               
                if(retmap.get(""+obj.getType()) ==null)
                {
                    retmap.put( ""+obj.getType(), new ArrayList());
                }
                List ls = (ArrayList)retmap.get(""+obj.getType());
                ls.add(midMap1.get("K_"+obj.getId())) ;
                retmap.put(""+obj.getType(), ls);
            }
        }
       
       
        return retmap;
    }

  • 大小: 23.6 KB
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics