Java lambda list轉(zhuǎn)換map時(shí),把多個(gè)參數(shù)拼接作為key操作
我就廢話不多說了,大家還是直接看代碼吧~
Map<String, Parts> partsMap = synList.stream().collect(Collectors.toMap(k ->
k.getOe()+k.getOeId()+k.getPartGroupId()+k.getStdPartId()+k.getBrandCode(), part -> part));
補(bǔ)充知識(shí):Java8 Collectors.toMap的兩個(gè)大坑
Collectors.toMap()方法的正常使用示例
List<StudentDTO> studentDTOS = Lists.newArrayList();studentDTOS.add(new StudentDTO(1,'xixi'));studentDTOS.add(new StudentDTO(2,'houhou'));studentDTOS.add(new StudentDTO(3,'maomi'));Map<Integer, String> 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時(shí)拋出IllegalStateException異常
1. 概述
按照常規(guī)Java的Map思維,往一個(gè)map里put一個(gè)已經(jīng)存在的key,會(huì)把原有的key對(duì)應(yīng)的value值覆蓋。
但Java8中的Collectors.toMap()卻不是這樣。當(dāng)key重復(fù)時(shí),該方法默認(rèn)會(huì)拋出IllegalStateException異常。
2. 大坑復(fù)現(xiàn)
public void streamToMap1() { List<StudentDTO> studentDTOS = Lists.newArrayList(); studentDTOS.add(new StudentDTO(1,'xixi')); studentDTOS.add(new StudentDTO(1,'houhou')); studentDTOS.add(new StudentDTO(3,'maomi')); Map<Integer, String> collect = studentDTOS.stream() .collect(Collectors.toMap(StudentDTO::getStudentId, StudentDTO::getStudentName)); System.out.println(JSON.toJSON(collect)); }
輸出結(jié)果
3. 大坑解決
法1:將toMap方法修改成如下形式,這樣就可以使用新的value覆蓋原有value。
studentDTOS.stream().collect(Collectors.toMap(StudentDTO::getStudentId,
StudentDTO::getStudentName,(oldValue, newValue) -> newValue));
輸出結(jié)果:{'1':'houhou','3':'maomi'}
法2:如果需要保留同一個(gè)key下所有的值,則可以對(duì)value做簡(jiǎn)單的拼接,如下:
studentDTOS.stream().collect(Collectors.toMap(StudentDTO::getStudentId,
StudentDTO::getStudentName,(oldValue, newValue) -> oldValue + ',' + newValue));
輸出結(jié)果:
{'1':'xixi,houhou','3':'maomi'}
二. 坑2:value為空時(shí)拋出NullPointerException異常
1. 概述
當(dāng)要轉(zhuǎn)化的map的value值中包含空指針時(shí), 會(huì)拋出NullPointerException異常。
2. 大坑復(fù)現(xiàn)
public void streamToMap2() { List<StudentDTO> studentDTOS = Lists.newArrayList(); studentDTOS.add(new StudentDTO(1,'xixi')); studentDTOS.add(new StudentDTO(2,'houhou')); studentDTOS.add(new StudentDTO(3,null)); Map<Integer, String> collect = studentDTOS.stream().collect(Collectors .toMap(StudentDTO::getStudentId, StudentDTO::getStudentName)); System.out.println(JSON.toJSON(collect));}
輸出結(jié)果
3. 大坑解決
3.1 法1:value值判空設(shè)置
說明:如果是null,則設(shè)置成一個(gè)特定值。
studentDTOS.stream().collect(Collectors.toMap(StudentDTO::getStudentId, studentDTO
-> studentDTO.getStudentName()==null?'':studentDTO.getStudentName()));
輸出結(jié)果:
{'1':'xixi','2':'houhou','3':''}
3.2 法2:使用collect(Supplier<R> supplier, BiConsumer<R, ? super T> accumulator, BiConsumer<R, R> combiner)方法構(gòu)建
說明:該方法允許null值。
Map<Integer, String> collect = studentDTOS.stream().collect(HashMap::new, (n, v) -> n.put(v.getStudentId(), v.getStudentName()), HashMap::putAll);for(Map.Entry<Integer, String> entry:collect.entrySet()){ System.out.println(entry.getKey()+'='+entry.getValue());}
輸出結(jié)果
1=xixi2=houhou3=null
3.3 使用Optional對(duì)值進(jìn)行包裝
Map<Integer, Optional<String>> collect = studentDTOS.stream().collect(Collectors .toMap(StudentDTO::getStudentId, studentDTO -> Optional.ofNullable(studentDTO.getStudentName()))); for(Map.Entry<Integer, Optional<String>> entry:collect.entrySet()){ System.out.println(entry.getKey()+'='+entry.getValue().orElse(''));}
輸出結(jié)果
1=xixi2=houhou3=
以上這篇Java lambda list轉(zhuǎn)換map時(shí),把多個(gè)參數(shù)拼接作為key操作就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。
