原文转载:https://blog.csdn.net/hanwenyi520/article/details/88551252
1、 List集合对象中获取对象中某个字段的数据转集合
List<PageDto> resultList = xxx.queryAll();
List<String> list = resultList.stream().map(r -> r.getUrl()).collect(Collectors.toList());
2、List 集合数据过滤 获取过滤后集合中的第一个对象
PageDto pageDto = resultList.stream().filter(r -> r.getParentId() == -1).findFirst().get();
3、List集合遍历
resultList.stream().forEach(pageDto -> {
System.out.println(pageDto.getUrl());
});
4、List集合对象中的数据 根据对象中的某一列分组转为Map
// 根据groupingBy中的字段将List分组
Map<Long , List<PageDto>> groupParam = resultList.stream().collect(Collectors.groupingBy(PageDto::getId));
// 将List转为Map
Map<Long , PageDto> pageMap = resultList.stream().collect(Collectors.toMap(PageDto::getId,p -> p));
// 如出现key值重复的时候 用新的key覆盖掉原本的key
Map<Long,String> map = resultList.stream().collect(Collectors
.toMap(PageDto::getId,PageDto::getUrl,(oldKey,newKey) -> newKey))
5、List排序
// 方式一
Collections.sort(resultList,(PageDto x, PageDto y) -> x.getSort().compareTo(y.getSort()));
// 方式二
Collections.sort(resultList, Comparator.comparing((PageDto p) -> p.getSort()));
// 方式三
// 升序
resultList.sort(Comparator.comparing(PageDto::getSort));
// 降序
resultList.sort(Comparator.comparing(PageDto::getSort).reversed());