1、使用流将list集合转换成map:
public class Result{
private Integer id;
private String code;
private String name;
}
List<Result> dicResults = new ArraryList<>();
Map<String, String> map= dicResults .stream()
.collect(Collectors.toMap(Result::getCode, Result::getName, (key1, key2) -> key2));
2、将list集合去重:
// list中存放的string:
List<String>= results.stream().distinct().collect(Collectors.toList());
//list 中存放的对象:
List<Result> resultList= resultsList.stream().collect(
collectingAndThen(
toCollection(() -> new TreeSet<>(comparing(Result::getName))), ArrayList::new));
3、判断list对象中的某个属性是否存在某值
filter为过滤(wz -> String.valueOf(wz.getKeyInfo()).equals(key))为过滤条件
.findAny()表示将其中任意一个返回
.isPresent()为了判断查询的类对象是否存在(.isPresent()一般与.get()方法合用 m.isPresent()如果存在则为true)
.orElse(null)表示如果一个都没找到返回null
List<ChartResult> chartResultList=new ArrayList<ChartResult>();
//存在返回true,不存在返回false
chartResultList.stream().filter(wz -> String.valueOf(wz.getKeyInfo()).equals(key)).findAny().isPresent();
//不存在返回null
chartResultList.stream().filter(wz -> String.valueOf(wz.getKeyInfo()).equals(key)).findAny().orElse(null);