多平台统一管理软件接口,如何实现多平台统一管理软件接口
847
2022-11-18
Java 将List中的实体类按照某个字段进行分组并存放至Map中操作
1、JDK1.8之前:
假设有实体类User,里面有字段id,我们将相同id的User进行分组,并存放在Map中。(例子不是很恰当,但很能说明问题)
public static void main(String[] args) {
List
list.add(new User(1, 1));
list.add(new User(1, 2));
list.add(new User(2, 1));
list.add(new User(2, 3));
list.add(new User(2, 2));
list.add(new User(3, 1));
Map
for(User user : list){
if(map.containsKey(user.getId())){//map中存在此id,将数据存放当前key的map中
map.get(user.getId()).add(user);
}else{//map中不存在,新建key,用来存放数据
List
tmpList.add(user);
map.put(user.getId(), tmpList);
}
}
System.out.println(map.toString());
}
执行结果:
可以看到达到了了我们的目的
2、JDK1.8 新特性实现
Map
附上
List
List
Map
list.stream().collect(Collectors.groupingBy(m -> (Long.parseLong(m.get("contractId").toString()))));
Map
list.stream().collect(Collectors.groupingBy(m -> (m.get("name").toString())));
补充知识:java中对list的数据按照某个属性进行分组,拆分成多个list
我就废话不多说了,大家还是直接看代码吧~
/**
* 按照List
*
*
* @param list
* @param oneMapKey
* @return
*/
private static Map
Map
Set setTmp = new HashSet();
for (Map
setTmp.add(tmp.get(oneMapKey));
}
Iterator it = setTmp.iterator();
while (it.hasNext()) {
String oneSetTmpStr = (String) it.next();
List
for (Map
String oneMapValueStr = (String) tmp.get(oneMapKey);
if (oneMapValueStr.equals(oneSetTmpStr)) {
oneSetTmpList.add(tmp);
}
}
resultMap.put(oneSetTmpStr, oneSetTmpList);
}
return resultMap;
}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~