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;
  }
}
相关推荐
唐青枫21 小时前
Java JDBC 实战指南:从 Connection 到事务和连接池
java
一个做软件开发的牛马1 天前
MyBatis-Plus 从零实战:完整搭建可运行 Demo,BaseMapper 零 SQL、Wrapper 条件构造、分页插件与代码生成器详解
java·后端
用户3721574261351 天前
Java 处理 PDF 图片:提取 PDF 中的图片,并压缩 PDF 图片体积
java
用户3721574261351 天前
Java 打印 Word 文档:从基础打印到高级设置
java
用户3521802454752 天前
当 Prompt 学会"热更新":Spring Boot × Nacos3 AI 实战
java·spring boot·ai编程
东坡白菜2 天前
破局全栈:一个前端开发的Java入门实战记录(1)
java·全栈
唐青枫2 天前
Java Tomcat 实战指南:从 Servlet 容器到 Spring Boot 部署
java
wsaaaqqq2 天前
roudan:自由选择实体、灵活操作数据、快速写入数据库的 Java 框架
java
plainGeekDev2 天前
null 判断 → Kotlin 可空类型
android·java·kotlin
糖拌西瓜皮2 天前
Java开发者视角:深入理解Node.js异步编程模型
java·后端·node.js