作 者:程铭程铭你快成名 来 源:https://blog.csdn.net/wangchengming1/article/details/89245402


Java8中有两大最为重要的改变,第一个是Lambda表达式,另外一个则是Stream API。

  • 流是Java8引入的全新概念,它用来处理集合中的数据。
  • 众所周知,集合操作非常麻烦,若要对集合进行筛选、投影,需要写大量的代码,而流是以声明的形式操作集合,它就像SQL语句,我们只需告诉流需要对集合进行什么操作,它就会自动进行操作,并将执行结果交给你,无需我们自己手写代码。
  • 在项目中使用Stream API可以大大提高效率以及代码的可读性,使我们对数据进行处理的时候事半功倍。
  • 如果想了解Java8其余的一些特性请看这里,这是我之前整理的Java8特性。

    这篇博文以实战角度出发,讲解平时开发中常用API的用法以及一些注意的地方。
  • 首先创建一个对象

    1. public class Employee {
    2. private int id;
    3. private String name;
    4. private int age;
    5. private double salary;
    6. private Status status;
    7. public enum Status {
    8. FREE, BUSY, VOCATION;
    9. }
    10. public Employee() {
    11. }
    12. public Employee(String name) {
    13. this.name = name;
    14. }
    15. public Employee(String name, int age) {
    16. this.name = name;
    17. this.age = age;
    18. }
    19. public Employee(int id, String name, int age, double salary) {
    20. this.id = id;
    21. this.name = name;
    22. this.age = age;
    23. this.salary = salary;
    24. }
    25. public Employee(int id, String name, int age, double salary, Status status) {
    26. this.id = id;
    27. this.name = name;
    28. this.age = age;
    29. this.salary = salary;
    30. this.status = status;
    31. }
    32. //省略get,set等。。。
    33. }
  • 随便初始化一些数据

    1. List<Employee> empList = Arrays.asList(
    2. new Employee(102, "李四", 59, 6666.66, Status.BUSY),
    3. new Employee(101, "张三", 18, 9999.99, Status.FREE),
    4. new Employee(103, "王五", 28, 3333.33, Status.VOCATION),
    5. new Employee(104, "赵六", 8, 7777.77, Status.BUSY),
    6. new Employee(104, "赵六", 8, 7777.77, Status.FREE),
    7. new Employee(104, "赵六", 8, 7777.77, Status.FREE),
    8. new Employee(105, "田七", 38, 5555.55, Status.BUSY));

    中间操作
  • 根据条件筛选filter

    1. /**
    2. * 接收Lambda, 从流中排除某些元素。
    3. */
    4. @Test
    5. void testFilter() {
    6. empList.stream().filter((e) -> {
    7. return e.getSalary() >= 5000;
    8. }).forEach(System.out::println);
    9. }
  • 跳过流的前n个元素skip

    1. /**
    2. * 跳过元素,返回一个扔掉了前n个元素的流。
    3. */
    4. @Test
    5. void testSkip() {
    6. empList.stream().filter((e) -> e.getSalary() >= 5000).skip(2).forEach(System.out::println);
    7. }
  • 去除重复元素distinct

    1. /**
    2. * 筛选,通过流所生成元素的 hashCode() 和 equals() 去除重复元素
    3. */
    4. @Test
    5. void testDistinct() {
    6. empList.stream().distinct().forEach(System.out::println);
    7. }
  • 截取流的前n个元素limit

    1. /**
    2. * 截断流,使其元素不超过给定数量。
    3. */
    4. @Test
    5. void testLimit() {
    6. empList.stream().filter((e) -> {
    7. return e.getSalary() >= 5000;
    8. }).limit(3).forEach(System.out::println);
    9. }
  • 映射map

    1. /**
    2. * 接收一个函数作为参数,该函数会被应用到每个元素上,并将其映射成一个新的元素
    3. */
    4. @Test
    5. void testMap() {
    6. empList.stream().map(e -> e.getName()).forEach(System.out::println);
    7. empList.stream().map(e -> {
    8. empList.forEach(i -> {
    9. i.setName(i.getName() + "111");
    10. });
    11. return e;
    12. }).collect(Collectors.toList());
    13. }
  • 自然排序sorted

    1. /**
    2. * 产生一个新流,其中按自然顺序排序
    3. */
    4. @Test
    5. void testSorted() {
    6. empList.stream().map(Employee::getName).sorted().forEach(System.out::println);
    7. }
  • 自定义排序sorted(Comparator comp)

    1. /**
    2. * 产生一个新流,其中按自然顺序排序
    3. */
    4. @Test
    5. void testSortedComparator() {
    6. empList.stream().sorted((x, y) -> {
    7. if (x.getAge() == y.getAge()) {
    8. return x.getName().compareTo(y.getName());
    9. } else {
    10. return Integer.compare(x.getAge(), y.getAge());
    11. }
    12. }).forEach(System.out::println);
    13. }

    最终操作
  • 是否匹配任一元素anyMatch

    1. /**
    2. * 检查是否至少匹配一个元素
    3. */
    4. @Test
    5. void testAnyMatch() {
    6. boolean b = empList.stream().anyMatch((e) -> e.getStatus().equals(Status.BUSY));
    7. System.out.println("boolean is : " + b);
    8. }
  • 是否匹配所有元素allMatch

    1. /**
    2. * 检查是否匹配所有元素
    3. */
    4. @Test
    5. void testAllMatch() {
    6. boolean b = empList.stream().allMatch((e) -> e.getStatus().equals(Status.BUSY));
    7. System.out.println("boolean is : " + b);
    8. }
  • 是否未匹配所有元素noneMatch

    1. /**
    2. * 检查是否没有匹配的元素
    3. */
    4. @Test
    5. void testNoneMatch() {
    6. boolean b = empList.stream().noneMatch((e) -> e.getStatus().equals(Status.BUSY));
    7. System.out.println("boolean is : " + b);
    8. }
  • 返回第一个元素findFirst

    1. /**
    2. * 返回第一个元素
    3. */
    4. @Test
    5. void testFindFirst() {
    6. Optional<Employee> op = empList.stream().sorted((e1, e2) -> Double.compare(e1.getSalary(), e2.getSalary()))
    7. .findFirst();
    8. if (op.isPresent()) {
    9. System.out.println("first employee name is : " + op.get().getName().toString());
    10. }
    11. }
  • 返回流中任意元素findAny

    1. /**
    2. * 返回当前流中的任意元素
    3. */
    4. @Test
    5. void testFindAny() {
    6. Optional<Employee> op = empList.stream().sorted((e1, e2) -> Double.compare(e1.getSalary(), e2.getSalary()))
    7. .findAny();
    8. if (op.isPresent()) {
    9. System.out.println("any employee name is : " + op.get().getName().toString());
    10. }
    11. }
  • 返回流的总数count

    1. /**
    2. * 返回流中元素的总个数
    3. */
    4. @Test
    5. void testCount() {
    6. long count = empList.stream().filter((e) -> e.getStatus().equals(Status.FREE)).count();
    7. System.out.println("Count is : " + count);
    8. }
  • 返回流中的最大值max

    1. /**
    2. * 返回流中最大值
    3. */
    4. @Test
    5. void testMax() {
    6. Optional<Double> op = empList.stream().map(Employee::getSalary).max(Double::compare);
    7. System.out.println(op.get());
    8. }
  • 返回流中的最小值min

    1. /**
    2. * 返回流中最小值
    3. */
    4. @Test
    5. void testMin() {
    6. Optional<Employee> op2 = empList.stream().min((e1, e2) -> Double.compare(e1.getSalary(), e2.getSalary()));
    7. System.out.println(op2.get());
    8. }
  • 归约reduce
    归约是将集合中的所有元素经过指定运算,折叠成一个元素输出

    1. /**
    2. * 可以将流中元素反复结合起来,得到一个值。返回T
    3. */
    4. @Test
    5. void testReduce() {
    6. Optional<Double> op = empList.stream().map(Employee::getSalary).reduce(Double::sum);
    7. System.out.println(op.get());
    8. }
    9. /**
    10. * 可以将流中元素反复结合起来,得到一个值,返回Optional< T>
    11. */
    12. @Test
    13. void testReduce1() {
    14. Optional<Integer> sum = empList.stream().map(Employee::getName).flatMap(Java8Stream::filterCharacter)
    15. .map((ch) -> {
    16. if (ch.equals('六'))
    17. return 1;
    18. else
    19. return 0;
    20. }).reduce(Integer::sum);
    21. System.out.println(sum.get());
    22. }
  • 将元素收集到list里Collectors.toList()

    1. /**
    2. * 把流中的元素收集到list里。
    3. */
    4. @Test
    5. void testCollectorsToList() {
    6. List<String> list = empList.stream().map(Employee::getName).collect(Collectors.toList());
    7. list.forEach(System.out::println);
    8. }
  • 将元素收集到set里Collectors.toSet()

    1. /**
    2. * 把流中的元素收集到set里。
    3. */
    4. @Test
    5. void testCollectorsToSet() {
    6. Set<String> list = empList.stream().map(Employee::getName).collect(Collectors.toSet());
    7. list.forEach(System.out::println);
    8. }
  • 把流中的元素收集到新创建的集合里Collectors.toCollection(HashSet::new)

    1. /**
    2. * 把流中的元素收集到新创建的集合里。
    3. */
    4. @Test
    5. void testCollectorsToCollection() {
    6. HashSet<String> hs = empList.stream().map(Employee::getName).collect(Collectors.toCollection(HashSet::new));
    7. hs.forEach(System.out::println);
    8. }
  • 根据比较器选择最大值Collectors.maxBy()

    1. /**
    2. * 根据比较器选择最大值。
    3. */
    4. @Test
    5. void testCollectorsMaxBy() {
    6. Optional<Double> max = empList.stream().map(Employee::getSalary).collect(Collectors.maxBy(Double::compare));
    7. System.out.println(max.get());
    8. }
  • 根据比较器选择最小值Collectors.minBy()

    1. /**
    2. * 根据比较器选择最小值。
    3. */
    4. @Test
    5. void testCollectorsMinBy() {
    6. Optional<Double> max = empList.stream().map(Employee::getSalary).collect(Collectors.minBy(Double::compare));
    7. System.out.println(max.get());
    8. }
  • 对流中元素的某个字段求和Collectors.summingDouble()

    1. /**
    2. * 对流中元素的整数属性求和。
    3. */
    4. @Test
    5. void testCollectorsSummingDouble() {
    6. Double sum = empList.stream().collect(Collectors.summingDouble(Employee::getSalary));
    7. System.out.println(sum);
    8. }
  • 对流中元素的某个字段求平均值Collectors.averagingDouble()

    1. /**
    2. * 计算流中元素Integer属性的平均值。
    3. */
    4. @Test
    5. void testCollectorsAveragingDouble() {
    6. Double avg = empList.stream().collect(Collectors.averagingDouble(Employee::getSalary));
    7. System.out.println(avg);
    8. }
  • 分组,类似sql的group by Collectors.groupingBy

    1. /**
    2. * 分组
    3. */
    4. @Test
    5. void testCollectorsGroupingBy() {
    6. Map<Status, List<Employee>> map = empList.stream().collect(Collectors.groupingBy(Employee::getStatus));
    7. System.out.println(map);
    8. }
  • 多级分组

    1. /**
    2. * 多级分组
    3. */
    4. @Test
    5. void testCollectorsGroupingBy1() {
    6. Map<Status, Map<String, List<Employee>>> map = empList.stream()
    7. .collect(Collectors.groupingBy(Employee::getStatus, Collectors.groupingBy((e) -> {
    8. if (e.getAge() >= 60)
    9. return "老年";
    10. else if (e.getAge() >= 35)
    11. return "中年";
    12. else
    13. return "成年";
    14. })));
    15. System.out.println(map);
    16. }
  • 字符串拼接Collectors.joining()

    1. /**
    2. * 字符串拼接
    3. */
    4. @Test
    5. void testCollectorsJoining() {
    6. String str = empList.stream().map(Employee::getName).collect(Collectors.joining(",", "----", "----"));
    7. System.out.println(str);
    8. }
    1. public static Stream<Character> filterCharacter(String str) {
    2. List<Character> list = new ArrayList<>();
    3. for (Character ch : str.toCharArray()) {
    4. list.add(ch);
    5. }
    6. return list.stream();
    7. }