1、list转换成list
不带return方式
List<Long> ids=wrongTmpList.stream().map(c->c.getId()).collect(Collectors.toList());
带return方式
// spu集合转化成spubo集合//java8的新特性
List<SpuBo> spuBos=spuList.stream().map(spu -> {
SpuBo spuBo = new SpuBo();
BeanUtils.copyProperties(spu, spuBo);
//查询品牌名称
Brand brand = this.brandMapper.selectByPrimaryKey(spu.getBrandId());
spuBo.setBname(brand.getName());
//查询类别名称
List<String> names = this.categoryService.queryNamesByIds(Arrays.asList(spu.getCid1(), spu.getCid2(), spu.getCid3()));
spuBo.setCname(StringUtils.join(names, "-"));
return spuBo;
}).collect(Collectors.toList());
2、list转map
Map<Long, Active> activeMap = actives.stream().collect(Collectors.toMap(Active::getId, s->s));
3、分组统计计算
list转map(根据某个属性进行分组)
Map<Long, List<TrainPlan>> trainMaps = trainPlans.stream().collect(
Collectors.groupingBy(TrainPlan::getModuleId));
list转map(统计计算)
List<StatDepartment> statDepartments = projectModuleBSDao.statProModByDepartment(params);
Map<Long, Integer> projectNumByDep = statDepartments.stream()
.collect(Collectors.groupingBy(StatDepartment::getDepartmentId, Collectors.summingInt(StatDepartment::getProjectNum)));
本文详细介绍如何使用Java8的Stream API进行数据转换,包括List到List的转换、List到Map的转换,以及如何利用Stream API进行分组统计计算。通过具体实例展示了如何将一个对象列表转换为另一个对象列表,如何根据特定属性将数据分组到Map中,以及如何对数据进行统计计算。
1498





