Java 将List中的实体类按照某个字段进行分组并存放至Map中操作

网友投稿 847 2022-11-18


Java 将List中的实体类按照某个字段进行分组并存放至Map中操作

1、JDK1.8之前:

假设有实体类User,里面有字段id,我们将相同id的User进行分组,并存放在Map中。(例子不是很恰当,但很能说明问题)

public static void main(String[] args) {

List list = new ArrayList<>();

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> map = new HashMap<>();

for(User user : list){

if(map.containsKey(user.getId())){//map中存在此id,将数据存放当前key的map中

map.get(user.getId()).add(user);

}else{//map中不存在,新建key,用来存放数据

List tmpList = new ArrayList<>();

tmpList.add(user);

map.put(user.getId(), tmpList);

}

}

System.out.println(map.toString());

}

执行结果:

可以看到达到了了我们的目的

2、JDK1.8 新特性实现

Map> map = list.stream().collect(Collectors.groupingBy(User::getId));

附上

List>>分组

List>> list = new ArrayList<>();

Map>> contractIdMap =

list.stream().collect(Collectors.groupingBy(m -> (Long.parseLong(m.get("contractId").toString()))));

Map>> nameMap =

list.stream().collect(Collectors.groupingBy(m -> (m.get("name").toString())));

补充知识:java中对list的数据按照某个属性进行分组,拆分成多个list

我就废话不多说了,大家还是直接看代码吧~

/**

* 按照List>里面map的某个value重新封装成多个不同的list, 原始数据类型List

* >, 转换后数据类型Map>>

*

* @param list

* @param oneMapKey

* @return

*/

private static Map change(List> list, String oneMapKey) {

Map resultMap = new HashMap();

Set setTmp = new HashSet();

for (Map tmp : list) {

setTmp.add(tmp.get(oneMapKey));

}

Iterator it = setTmp.iterator();

while (it.hasNext()) {

String oneSetTmpStr = (String) it.next();

List> oneSetTmpList = new ArrayList>();

for (Map tmp : list) {

String oneMapValueStr = (String) tmp.get(oneMapKey);

if (oneMapValueStr.equals(oneSetTmpStr)) {

oneSetTmpList.add(tmp);

}

}

resultMap.put(oneSetTmpStr, oneSetTmpList);

}

return resultMap;

}

* >, 转换后数据类型Map>>

*

* @param list

* @param oneMapKey

* @return

*/

private static Map change(List> list, String oneMapKey) {

Map resultMap = new HashMap();

Set setTmp = new HashSet();

for (Map tmp : list) {

setTmp.add(tmp.get(oneMapKey));

}

Iterator it = setTmp.iterator();

while (it.hasNext()) {

String oneSetTmpStr = (String) it.next();

List> oneSetTmpList = new ArrayList>();

for (Map tmp : list) {

String oneMapValueStr = (String) tmp.get(oneMapKey);

if (oneMapValueStr.equals(oneSetTmpStr)) {

oneSetTmpList.add(tmp);

}

}

resultMap.put(oneSetTmpStr, oneSetTmpList);

}

return resultMap;

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:JAVA WSIMPORT生成WEBSERVICE客户端401认证过程图解
下一篇:使用jdk1.8实现将list根据指定的值去分组的操作
相关文章

 发表评论

暂时没有评论,来抢沙发吧~