Stream-流式操作

Stream 流式操作

Java8对集合操作功能的增强,专注于对集合的各种高效、便利、优雅的聚合操作。

获取list某个字段 组装 新list

复制代码
List<Integer> userIdList = userList.stream().map(e -> e.getUserId()).collect(Collectors.toList());

根据指定字段分组 Collectors.groupingBy()

复制代码
// 根据name字段分组,User对象值相同时不去重
Map<String, List<User>> mapByName = list.stream().collect(Collectors.groupingBy(User::getName));
// 根据name字段分组,User对象值相同时去重
Map<String, List<User>> mapByName = list.stream().collect(Collectors.groupingBy(
    e -> e.getName(),
    Collectors.mapping(e -> e, Collectors.collectingAndThen(Collectors.toSet(), ArrayList::new))));

Map<Long, List<Long>> userIdReOrderIdsMap = list.stream()
                            .collect(Collectors.groupingBy(OrderVO::getUserId,
                                    Collectors.mapping(OrderVO::getOrderId, Collectors.toList())));

去重 distinct()

复制代码
List<Integer> numList = Lists.newArrayList(1, 5, 3, 3, 6);
numList = numList.stream().distinct().collect(Collectors.toList());

// 根据指定字段去重
list = list.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(User::getId))), ArrayList::new));

条件过滤 filter()

复制代码
// 只要含有"小孙"的数据
list = list.stream().filter(e -> e.getName().equals("小孙")).collect(Collectors.toList());

求和

复制代码
// 基本类型
int sumAge = userList.stream().mapToInt(User::getAge).sum();
// 其他  -- 若bigDecimal对象为null,可filter()过滤掉空指针
BigDecimal totalMemberNum = userList.stream().map(User::getMemberNum).reduce(BigDecimal.ZERO, BigDecimal::add);

最大值/最小值

复制代码
Date minDate = userList.stream().map(User::getCreateTime).min(Date::compareTo).get();
Date maxDate = userList.stream().map(User::getCreateTime).max(Date::compareTo).get();
User maxUp = userList.stream().max(Comparator.comparingInt(User::getAge)).get();

差值(新增/删除)

复制代码
List<Integer> userIdListNew = Lists.newArrayList(1, 2, 3, 5, 6);
List<Integer> userIdListOld = Lists.newArrayList(1, 2, 3, 4);

// 删除人员 [4]
List<Integer> removeUserIdList = userIdListOld.stream().filter(userIdOld -> !userIdListNew.contains(userIdOld)).collect(Collectors.toList());
// 或使用hutool
List<Integer> addList = CollUtil.subtractToList(userIdListOld, userIdListNew); // [4]

// 新增人员 [5, 6]
List<Integer> addUserIdList = userIdListNew.stream().filter(userIdNew -> !userIdListOld.contains(userIdNew)).collect(Collectors.toList());
// 或使用hutool
List<Integer> addList = CollUtil.subtractToList(userIdListNew, userIdListOld); // [5, 6]

分类统计数量

复制代码
// 多字段统计 -- ex: 统计相同name下相同age的个数
Map<String, Map<Integer, Long>> map = list.stream().collect(
                Collectors.groupingBy(User::getName, Collectors.groupingBy(User::getAge, Collectors.counting()))
        );

// 单字段统计 [LongSummaryStatistics中包含总数、最小值、最大值、平均值等信息]   --  ex: 根据名称去统计
Map<String, LongSummaryStatistics> map = list.stream()
        .collect(
                Collectors.groupingBy(User::getName, Collectors.summarizingLong(User::getAge))
        );

求list重复元素值

复制代码
@Test
public void test02() throws Exception {
    List<Integer> list = Lists.newArrayList(1, 2, 3, 4, 5, 6, 1, 6, 6);
    List<Integer> repeatDataList = list.stream()
        .collect(Collectors.toMap(e -> e, e -> 1, Integer::sum))
        .entrySet().stream()
        .filter(entry -> entry.getValue() > 1)
        .map(Map.Entry::getKey)
        .collect(Collectors.toList());
    System.out.println(repeatDataList); // [1, 6]
    
    
    // 求list对象中某一个字段的重复值
    List<String> repeatValueDataList = dictList
                    .stream().map(e -> e.getValue()).collect(Collectors.toList())
                    .stream().collect(Collectors.toMap(e -> e, e -> 1, Integer::sum))
                    .entrySet().stream()
                    .filter(entry -> entry.getValue() > 1)
                    .map(Map.Entry::getKey)
                    .collect(Collectors.toList());
}

public <T> List<T> getRepeatDataList(List<T> list) {
    return list.stream()
            // 获得元素出现频率的 Map,键为元素,值为元素出现的次数
            .collect(Collectors.toMap(e -> e, e -> 1, Integer::sum))
            // Set<Entry>转换为Stream<Entry>
            .entrySet().stream()
            // 过滤出元素出现次数大于 1 的 entry
            .filter(entry -> entry.getValue() > 1)
            // 获得 entry 的键(重复元素)对应的 Stream
            .map(Entry::getKey)
            // 转化为 List
            .collect(Collectors.toList());
}

demo

复制代码
package com.zhengqing.demo.daily.base.java8;

import cn.hutool.json.JSONUtil;
import com.google.common.collect.Lists;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.junit.Test;

import java.util.*;
import java.util.stream.Collectors;

public class Java8_stream {
  @Test
  public void test() throws Exception {
    List<Integer> numList = Lists.newArrayList(1, 5, 3, 3, 6);
    List<User> list = Lists.newArrayList(
      User.builder().id(1).age(16).name("小张").build(),
      User.builder().id(10).age(20).name("小孙").build(),
      User.builder().id(1).age(18).name("李四").build(),
      User.builder().id(3).age(6).name("王五").build()
    );

    Map<String, List<User>> mapByName = list.stream().collect(Collectors.groupingBy(User::getName));
    System.out.println("分组:" + JSONUtil.toJsonStr(mapByName));

    numList = numList.stream().distinct().collect(Collectors.toList());
    System.out.println("去重:" + numList);

    list = list.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(User::getId))), ArrayList::new));
    System.out.println("根据指定字段去重:" + JSONUtil.toJsonStr(list));

    list = list.stream().filter(e -> e.getName().equals("小孙")).collect(Collectors.toList());
    System.out.println("条件过滤:" + JSONUtil.toJsonStr(list));
  }

  @Data
  @Builder
  @NoArgsConstructor
  @AllArgsConstructor
  static class User {
    private Integer id;
    private String name;
    private Integer age;
    private Date time;
  }
}
相关推荐
zhanghaha13142 小时前
HTML系列教程:14_HTML 表单与输入框 <form>、<input> 零基础详解
java·前端·javascript
yxlalm7 小时前
Spring AI+RAG 01-项目背景与技术选型
java·人工智能·spring
程序员清风8 小时前
Java 后端高并发设计:线程池、限流、熔断与降级
java·数据库·oracle
Seoyoneh8 小时前
Agentic Workflow编排架构:云客服从“被动响应”迈向“主动执行”的技术实现
java·开发语言·架构
海南java第二人9 小时前
对外 API 如何保证幂等性?插入数据 / 上传表格场景全方案汇总
java·幂等性
tryxr9 小时前
Chat2Excel 文件服务模块上传文件功能开发
java·项目·oss·easyexcel·文件服务
Tangyuewei9 小时前
Java 写 Agent:模型只是组件
java·开发语言
彧azz10 小时前
Java学习语法篇:变量
java·学习
信誓旦旦的程序猿11 小时前
【量化系统从零构建 #04】存储设计:选型·建库·交易日历
java·人工智能·python·股票数据api·股票数据·股票数据api接口·股票api数据接口
yurenpai(27届找实习中)11 小时前
Java 10 的 var 为什么不能随便用?从订单汇总看懂类型推断与泛型陷阱
java·开发语言·java18