这篇文章主要介绍了Java lambda list转换map时,把多个参数拼接作为key操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
我就废话不多说了,大家还是直接看代码吧~
Map partsMap = synList.stream().collect(Collectors.toMap(k ->
k.getoe()+k.getoeId()+k.getPartGroupId()+k.getStdPartId()+k.getBrandCode(), part -> part));
补充知识:Java8 Collectors.toMap的两个大坑
Collectors.toMap()方法的正常使用示例
List studentDTOS = Lists.newArrayList(); studentDTOS.add(new StudentDTO(1,"xixi")); studentDTOS.add(new StudentDTO(2,"houhou")); studentDTOS.add(new StudentDTO(3,"maomi")); Map collect = studentDTOS.stream().collect( Collectors.toMap(StudentDTO::getStudentId, StudentDTO::getStudentName)); System.out.println(JSON.toJSON(collect)); // {"1":"xixi","2":"houhou","3":"maomi"}
一. 坑1:Duplicate Key时抛出IllegalStateException异常
1. 概述
按照常规Java的Map思维,往一个map里put一个已经存在的key,会把原有的key对应的value值覆盖。
但Java8中的Collectors.toMap()却不是这样。当key重复时,该方法默认会抛出IllegalStateException异常。
2. 大坑复现
public void streamToMap1() { List studentDTOS = Lists.newArrayList(); studentDTOS.add(new StudentDTO(1,"xixi")); studentDTOS.add(new StudentDTO(1,"houhou")); studentDTOS.add(new StudentDTO(3,"maomi")); Map collect = studentDTOS.stream() .collect(Collectors.toMap(StudentDTO::getStudentId, StudentDTO::getStudentName)); System.out.println(JSON.toJSON(collect)); }
输出结果
3. 大坑解决
法1:将toMap方法修改成如下形式,这样就可以使用新的value覆盖原有value。
studentDTOS.stream().collect(Collectors.toMap(StudentDTO::getStudentId,
StudentDTO::getStudentName,(oldValue, newValue) -> newValue));
输出结果:{"1":"houhou","3":"maomi"}
法2:如果需要保留同一个key下所有的值,则可以对value做简单的拼接,如下:
studentDTOS.stream().collect(Collectors.toMap(StudentDTO::getStudentId,
StudentDTO::getStudentName,(oldValue, newValue) -> oldValue + "," + newValue));
输出结果:
{"1":"xixi,houhou","3":"maomi"}
二. 坑2:value为空时抛出NullPointerException异常
1. 概述
当要转化的map的value值中包含空指针时, 会抛出NullPointerException异常。
2. 大坑复现
public void streamToMap2() { List studentDTOS = Lists.newArrayList(); studentDTOS.add(new StudentDTO(1,"xixi")); studentDTOS.add(new StudentDTO(2,"houhou")); studentDTOS.add(new StudentDTO(3,null)); Map collect = studentDTOS.stream().collect(Collectors .toMap(StudentDTO::getStudentId, StudentDTO::getStudentName)); System.out.println(JSON.toJSON(collect)); }
输出结果
3. 大坑解决
3.1 法1:value值判空设置
说明:如果是null,则设置成一个特定值。
studentDTOS.stream().collect(Collectors.toMap(StudentDTO::getStudentId, studentDTO
-> studentDTO.getStudentName()==null?"":studentDTO.getStudentName()));
输出结果:
{"1":"xixi","2":"houhou","3":""}
3.2 法2:使用collect(supplier supplier, BiConsumer accumulator, BiConsumer combiner)方法构建
说明:该方法允许null值。
Map collect = studentDTOS.stream().collect(HashMap::new, (n, v) -> n.put(v.getStudentId(), v.getStudentName()), HashMap::putAll); for(Map.Entry entry:collect.entrySet()){ System.out.println(entry.getKey()+"="+entry.getValue()); }
输出结果
1=xixi 2=houhou 3=null
3.3 使用Optional对值进行包装
Map> collect = studentDTOS.stream().collect(Collectors .toMap(StudentDTO::getStudentId, studentDTO -> Optional.ofNullable(studentDTO.getStudentName()))); for(Map.Entry> entry:collect.entrySet()){ System.out.println(entry.getKey()+"="+entry.getValue().orElse("")); }
输出结果
1=xixi 2=houhou 3=
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。