java stream流分组排序
时间: 2023-11-17 21:59:13 浏览: 101
java8 stream自定义分组求和并排序的实现
Java 8中的Stream流可以方便地对list进行分组和排序。首先,使用Collectors.groupingBy()方法将list中的元素分组,然后使用Collectors.sort()方法将分组后的list中的元素按照指定的字段进行排序。具体步骤如下:
1. 使用Collectors.groupingBy()方法将list中的元素按照指定的字段进行分组,例如:Map<String, List<Person>> peopleByCity = people.stream().collect(Collectors.groupingBy(Person::getCity));
2. 使用Map.Entry.comparingByValue()方法将分组后的list中的元素按照指定的字段进行排序,例如:Map<String, List<Person>> sortedPeopleByCity = peopleByCity.entrySet().stream().sorted(Map.Entry.comparingByValue(Comparator.comparing(Person::getName))).collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue, (e1, e2) -> e1, LinkedHashMap::new));
其中,Comparator.comparing()方法可以指定按照哪个字段进行排序,LinkedHashMap::new可以保证排序后的结果按照插入顺序排序。
阅读全文