本文主要是介绍Java基础-Lambda表达式的使用套路,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.列表循环
1.1.普通的forEach循环
goodsSkuBatch.stream().forEach(goodsSkuPromote -> {// 循环处理对象 TODO
});
2.列表过滤
// 去重复信息: 过滤收集后补数据库中的ID, 收集listList<EmailMessage> crudList = emailDataList.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(o -> o.getEmailId() + "_" + o.getMailId() + "_" + o.getConversationId()))), ArrayList::new) // 缺点,会重新取出数据后生成集合,内存瞬间占用一倍);
3.列表分组
3.1.对象List分组(单属性做Key)
// 单独的属性取出来作为分组依据
Map<Integer, List<GoodsBrands>> brandMap = brandsList.stream().collect(Collectors.groupingBy(GoodsBrands::getSourceType));
3.2.对象List分组(多属性拼接做Key)
// 多个属性拼接作为分组依据
Map<String, List<GoodsBrands>> brandMap = brandsList.stream().collect(Collectors.groupingBy(b -> b.getSourceType() + b.getBrandCode()));
4.列表转Map
4.1.对象List转HashMap(单属性做Key)
// 如果对象中存在相同Key的情况,下图例子标识使用相同项的第二项,如果不止两个则使用最新的
Map<String, Integer> goodsMap = existGoodsList.stream().collect(Collectors.toMap(GoodsSkuPromote::getGoodCode, GoodsSkuPromote::getId, (value1, value2) -> {// 遇到重复数据使用第二项return value2;
}));
4.2.对象List转HashMap(多属性拼接做Key)
// 如果是要做多属性拼接,可以在key拼接处自行定义
Map<String, Integer> goodsMap = existGoodsList.stream().collect(Collectors.toMap(k -> k.getSourceType() + "-" + k.getGoodCode(), v -> v.getId(), (value1, value2) -> {// 遇到重复数据使用第二项return value2;
}));
5.列表去重
// 针对库中存在的,补全id// 去重复信息: 过滤收集后补数据库中的ID, 收集listList<EmailMessage> crudList = emailDataList.stream().collect(// 比较器,通过指定条件比较后收集,并转化为ListCollectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(o -> o.getEmailId() + "_" + o.getMailId() + "_" + o.getConversationId()))), ArrayList::new)// 收集完成的List循环给字段赋值).stream().map(emailMessage -> {// 判断messageId是否为空EmailMessage emailMessageDb = null;// 根据messageId判断邮件是否已经存在String existMailKey = emailMessage.getEmailId() + "_" + emailMessage.getMailId() + "_" + emailMessage.getConversationId();if (existMsgMap.containsKey(existMailKey)) {emailMessageDb = existMsgMap.get(existMailKey);}// 判断是更新还是插入if (emailMessageDb == null) {emailMessage.setIsReply("0");emailMessage.setIsRead("0");// 系统当前时间LocalDateTime localDateTime = DateUtil.fromDate(new Date());// 设置新增信息emailMessage.setCreateUser(OpenCache.ADMIN_USER_ID);emailMessage.setCreateDept(OpenCache.ADMIN_DEPT_ID);emailMessage.setCreateTime(localDateTime);// 设置更新信息emailMessage.setUpdateUser(OpenCache.ADMIN_USER_ID);emailMessage.setUpdateTime(localDateTime);// 不存在 -> 插入emailDataList.add(emailMessage);} else {// 存在 -> 更新emailMessage.setId(emailMessageDb.getId());// 系统当前时间LocalDateTime localDateTime = DateUtil.fromDate(new Date());emailMessage.setUpdateTime(localDateTime);emailDataList.add(emailMessage);}return emailMessage;// 收集起来}).collect(Collectors.toList());
6.列表转换对象
6.1.字符串列表转换为对象列表
// 字符串列表转为对象列表
List<String> ipProxyList = new ArrayList<>();
List<Proxy> proxyList = ipProxyList.stream().map(ip -> {String[] ipArr = StringUtils.split(ip, ":");return new Proxy(ipArr[0], Integer.valueOf(ipArr[1]));
}).collect(Collectors.toList());
7.列表排序
参考博客: Java8 使用 stream().sorted()对List集合进行排序
7.1.列表升序
// 更新所有商品没有ePID的
Set<String> noEpidCodeSet = productList.stream().sorted(Comparator.comparing(CommonProductSurveyVO::getUpdatedTime)).filter(product -> {return StringUtil.isEmpty(product.getEpid());}).map(CommonProductSurveyVO::getProductCode).collect(Collectors.toSet());
7.2.列表降序
// 更新所有商品没有ePID的
Set<String> noEpidCodeSet = productList.stream().sorted(Comparator.comparing(CommonProductSurveyVO::getUpdatedTime).reversed()).filter(product -> {return StringUtil.isEmpty(product.getEpid());}).map(CommonProductSurveyVO::getProductCode).collect(Collectors.toSet());
这篇关于Java基础-Lambda表达式的使用套路的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!