一、list 转 map List<Student> list= new ArrayList<>(); 1、第一种,List<Student> 转化Map<String,String> Map<String,String> map = list.stream() .collect(Collectors.toMap( Student::getName, Student::getAge, (k1, k2) -> k2)); 1、第一种,List<Student> 转化Map<String,Student> Map<Str...
Map<String,List<String>>map=list.stream().collect(Collectors.toMap(Person::getId,p->{List<String>getNameList=newArrayList<>();getNameList.add(p.getName());returngetNameList;},(List<String>value1,List<String>value2)->{value1.addAll(value2);returnvalue1;}))System.out.println(map); 输出...
1.使用对象中的属性构建映射Map 假设一个对象Person,其中有id、name两个属性,并且有对应关系。 @Data @AllArgsConstructor static class Person { private String id; private String Name; } 现在将一个List<Person>转变为id与name的Map<String,String>。 如果personList中存在相同id的两个或多个对象,构建Map时...
Map<String, Integer> map = names.stream().collect(Collectors.toMap(v -> v, v -> 1)); System.out.println(map); } } 1. 2. 3. 4. 5. 6. 7. 程序运行输出 {Answer=1, AnswerAIL=1, AI=1} 1. 将List 转为 Map<K, V> public static void main(String[] args) thr...
2-1.list转map lombok注解链接 // 这里的注解作用可点击上方链接 @Data @Accessors(chain = true) @AllArgsConstructor @NoArgsConstructor public static class User{ private String id; private String name; } // list转map // ::用于类与方法之间,如person -> person.getAge();可以替换成Person::getAge...
{code=01, name=yuwen}, {code=02, name=shuxu}, {code=03, name=yingyu}] //期望转为 Map<String, String> map = new HashMap<>(); map.put("yuwen","01"); map.put("shuxu","02"); map.put("yingyu","03"); System.out.println(map.toString()); //{yingyu=03, yuwen=01, shu...
public static void main(String[] args) { List<Map<String, List<String>>> list = new ArrayList<>(); // 创建测试数据 Map<String, List<String>> map1 = new HashMap<>(); map1.put("key1", Arrays.asList("value1", "value2", "value3")); ...
Map<String,List<String>>materielSeqMap=opList.stream().collect(Collectors.groupingBy(DeviceDto::getDeviceCode,Collectors.mapping(DeviceDto::getDeviceName,Collectors.toList())); 转换为map,然后值根据排序获取最大的一个 tableMap=list.stream().filter(t->t.getTargetSchemaName().equals(e.getKey()))...
publicstaticvoidmain(String[]args){List<Student>stu=newArrayList<>();Students1=newStudent();s1.setId(1);s1.setName("zs");Students2=newStudent();s2.setId(1);s2.setName("ls");Students3=newStudent();s3.setId(3);s3.setName("ww");stu.add(s1);stu.add(s2);stu.add(s3);stu.stre...