java8 list常用方法

本文详细介绍了如何使用Java8StreamAPI进行List到Map的转换,提取特定字段,排序,去重,过滤,求和,以及日期处理(LocalDate和Date)的各种方法实例。
摘要由CSDN通过智能技术生成

List分组

Map<Integer, List<Sku>> mapList = list.stream().collect(Collectors.groupingBy(Sku::getProductSpecificationId));

List转Map

Map<Integer, Sku> appleMap = list.stream().collect(Collectors.toMap(Sku::getProductSpecificationId, item -> item));

List获取指定的字段集合

List<Integer> idList = list.stream().map(Sku::getId).collect(Collectors.toList());

List排序

Sku.stream().sorted(Comparator.comparing(Sku::getId).reversed()).collect(Collectors.toList());

List去重

List<String> numbers = list.stream().distinct().collect(Collectors.toList());

List过滤

List<Sku> collect = list.stream().filter(item -> Arrays.asList("aaa", "bbb").contains(item.getHaha())).collect(Collectors.toList());

List int 结果之和

Integer sum = list.stream().mapToInt(Integer::intValue).sum();

List转换逗号分隔的字符串

StringUtils.join(list, ",")

List类型转换

String[] aaa = "1-2-3".split("-");
List<Integer> bbb = Arrays.asList(aaa).stream().map(Integer::parseInt).collect(Collectors.toList());

LocalDate处理

月初:LocalDate.now().withDayOfMonth(1)
月末:LocalDate.now().with(TemporalAdjusters.lastDayOfMonth())
字符串转日期:LocalDate.parse("2024-05-01")
日期转字符串:DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
		String formattedDate = date.format(formatter);

Date处理

字符串转日期:DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
	dateFormat.parse(dateString)
日期转字符串:SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    String dateString = sdf.format(date);
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值