Java8 Stream常见用法

Stream流的常见用法:

1.利用stream流特性把数组转list集合

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//打印结果
System.out.println(list);

输出结果为:

2.利用stream流特性取出list集合中的最大值

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性获取集合中的最大值
Integer max = list.stream().max(Comparator.comparing(Integer::new)).get();
//打印结果
System.out.println(max);

输出结果为:

3.利用stream流特性取出list集合中的最小值

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性获取集合中的最
Integer min= list.stream().min(Comparator.comparing(Integer::new)).get();
//打印结果
System.out.println(min);

输出结果为:

4.利用stream流特性取出list集合中大于3的值

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性获取集合中大于3的所有值
List<Integer> conditions =

list.stream().filter(value -> value > 3).collect(Collectors.toList());
//打印结果
System.out.println(conditions);

输出结果:

5.利用stream流特性取出list集合中小于3的值

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性获取集合中小于3的所有值
List<Integer> conditions = list.stream().filter(value -> value < 3).collect(Collectors.toList());
//打印结果
System.out.println(conditions);

输出结果:

6.利用stream流特性取出list集合中不等于3的值

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性获取集合中不等于3的值
List<Integer> conditions = list.stream().filter(value -> value != 3).collect(Collectors.toList());
//打印结果
System.out.println(conditions);

输出结果:

7.利用stream流特性计算list集合中大于1的数量

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性获取集合中大于1数量
long count = list.stream().filter(value -> value > 1).count();
//打印结果
System.out.println(count);

输出结果:

8.利用stream流特性计算list集合中等于2的数量

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性获取集合中等于2的数量
long count = list.stream().filter(value -> value == 2).count();
//打印结果
System.out.println(count);

输出结果:

9.利用stream流特性去除list集合中重复的数据

//定义一个数组
Integer[] array = {5,5,2,2,1,1,6,6,4,4,3,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性去除集合中重复的数据
List<Integer> collects = list.stream().distinct().collect(Collectors.toList());
//打印结果
System.out.println("去除前的数据:" + list + "\n去重后的数据:" + collects);

输出结果:

10.利用stream流特性截取list集合中前两个的数据

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性截取集合中前两个数值
List<Integer> collects = list.stream().limit(2).collect(Collectors.toList());
//打印结果
System.out.println("截取到的数据:" + collects);

输出结果:

11.利用stream流特性跳过list集合中前两个数据

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性跳过集合中前两个数值
List<Integer> collects = list.stream().skip(2).collect(Collectors.toList());
//打印结果
System.out.println("跳过前两个值后的数据:" + collects);

输出结果:

12.利用stream流特性遍历list集合中每一个元素

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性遍历集合中每一个元素
list.stream().forEach(System.out::println);

输出结果:

13.利用stream流特性计算list集合中数值的平均值

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性计算集合中数值的平均值
double average = list.stream().mapToInt(Integer::new).average().orElse(0);
//打印结果
System.out.println("计算后的平均值:" + average);

输出结果:

14.利用stream流特性计算list集合中数值的总和

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性计算集合中数值的总和
int sum = list.stream().mapToInt(Integer::new).sum();
//打印结果
System.out.println("计算后的总和:" + sum);

输出结果:

15.利用stream流特性升序排列list集合中所有元素

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性升序排列集合中的所有元素
List<Integer> collects = list.stream().sorted().collect(Collectors.toList());
//打印结果
System.out.println("升序排列后的集合:" + collects);

输出结果:

16.利用stream流特性降序排列list集合中所有元素

//定义一个数组
Integer[] array = {5,2,1,6,4,3};
//通过stream特性把数组转list集合
List<Integer> list = Arrays.stream(array).collect(Collectors.toList());
//通过stream特性降序排列集合中的所有元素
List<Integer> collects = list.stream().sorted(Comparator.reverseOrder()).collect(Collectors.toList());
//打印结果
System.out.println("降序排列后的集合:" + collects);

输出结果:

结合实际拓展使用:

1、处理Person对象列表,及一些常见的数据操作

创建一个Person类,它具有姓名、年龄和性别属性。我们要处理一个包含多个Person对象的列表,并进行一些常见的数据操作。以下是使用Java 8的Stream常用用法处理这个复杂数据的示例代码:

import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

public class Stream {


    public static void main(String[] args) {
        //在集合中添加几组数据
        List<Person> persons = Arrays.asList(
                new Person("John", 25, Gender.MALE),
                new Person("Jane", 30, Gender.FEMALE),
                new Person("Tom", 20, Gender.MALE),
                new Person("Susan", 28, Gender.FEMALE),
                new Person("Mike", 35, Gender.MALE)
        );

        // 使用Stream的常用用法

        // 1. 按年龄升序排列,并获取姓名列表
        List<String> sortedNames = persons.stream()
                .sorted((p1, p2) -> p1.getAge() - p2.getAge())
                .map(Person::getName)
                .collect(Collectors.toList());
        System.out.println(sortedNames);

        // 2. 获取所有年龄大于25岁的人的姓名列表
        List<String> namesAbove25 = persons.stream()
                .filter(p -> p.getAge() > 25)
                .map(Person::getName)
                .collect(Collectors.toList());
        System.out.println(namesAbove25);

        // 3. 统计男性和女性的人数
        long maleCount = persons.stream()
                .filter(p -> p.getGender() == Gender.MALE)
                .count();
        long femaleCount = persons.stream()
                .filter(p -> p.getGender() == Gender.FEMALE)
                .count();
        System.out.println("Male count: " + maleCount);
        System.out.println("Female count: " + femaleCount);

        // 4. 按性别分组
        Map<Gender, List<Person>> personsByGender = persons.stream()
                .collect(Collectors.groupingBy(Person::getGender));
        System.out.println(personsByGender);

        // 5. 计算年龄的平均值
        double averageAge = persons.stream()
                .mapToInt(Person::getAge)
                .average()
                .orElse(0);
        System.out.println("Average age: " + averageAge);
    }
}

//定义一个人物类
class Person {
    private String name;
    private int age;
    private Gender gender;

    public Person(String name, int age, Gender gender) {
        this.name = name;
        this.age = age;
        this.gender = gender;
    }

    public String getName() {
        return name;
    }

    public int getAge() {
        return age;
    }

    public Gender getGender() {
        return gender;
    }

    @Override
    public String toString() {
        return "Person{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", gender=" + gender +
                '}';
    }
}
//定义一个枚举类
enum Gender {
    MALE, FEMALE
}

这段代码使用了Stream的排序、映射、过滤、计数、分组和统计等常用操作,展示了如何在处理复杂数据时利用Stream提供的功能。根据实际需要,可以组合使用这些操作来完成更复杂的数据处理任务。

2、学生老师和课程,及一些常见的数据操作

创建一个包含学生、老师和课程的复杂数据结构。学生和老师都有姓名和年龄属性,课程有名称和标签属性。我们要处理这个复杂数据结构,并进行一些常见的数据操作。以下是使用Java 8的Stream常用用法处理这个复杂数据的示例代码:

import java.util.*;
import java.util.stream.Collectors;
public class Stream {
    public static void main(String[] args) {
        // 创建学生
        Student student1 = new Student("John", 20);
        Student student2 = new Student("Jane", 22);
        Student student3 = new Student("Tom", 23);
        List<Student> students = Arrays.asList(student1, student2, student3);

        // 创建老师
        Teacher teacher1 = new Teacher("Amy", 35);
        Teacher teacher2 = new Teacher("Bob", 40);
        List<Teacher> teachers = Arrays.asList(teacher1, teacher2);

        // 创建课程
        Course course1 = new Course("Math", "science");
        Course course2 = new Course("English", "language");
        Course course3 = new Course("Physics", "science");
        List<Course> courses = Arrays.asList(course1, course2, course3);

        // 学生选课
        student1.selectCourse(course1);
        student1.selectCourse(course2);
        student2.selectCourse(course2);
        student2.selectCourse(course3);
        student3.selectCourse(course1);
        student3.selectCourse(course3);

        // 按照年龄升序排列学生
        List<Student> sortedStudents = students.stream()
                .sorted((s1, s2) -> s1.getAge() - s2.getAge())
                .collect(Collectors.toList());
        System.out.println(sortedStudents);

        // 获取学生姓名列表
        List<String> studentNames = students.stream()
                .map(Student::getName)
                .collect(Collectors.toList());
        System.out.println(studentNames);

        // 获取学生所选的课程名列表
        List<String> studentCourseNames = students.stream()
                .flatMap(student -> student.getCourses().stream())
                .map(Course::getName)
                .collect(Collectors.toList());
        System.out.println(studentCourseNames);

        // 获取选择了"science"标签的课程
        List<Course> scienceCourses = courses.stream()
                .filter(course -> course.getLabel().equals("science"))
                .collect(Collectors.toList());
        System.out.println(scienceCourses);

        // 根据老师的年龄分组学生
        Map<Teacher, List<Student>> studentsByTeacher = students.stream()
                .collect(Collectors.groupingBy(Student::getTeacher));
        System.out.println(studentsByTeacher);
    }
}

class Student {
    public Teacher teacher;
    private String name;
    private int age;
    private List<Course> courses;

    public Student(String name, int age) {
        this.name = name;
        this.age = age;
        this.courses = new ArrayList<>();
    }

    public String getName() {
        return name;
    }

    public int getAge() {
        return age;
    }

    public List<Course> getCourses() {
        return courses;
    }

    public Teacher getTeacher() {
        return teacher;
    }

    public void selectCourse(Course course) {
        courses.add(course);
        course.addStudent(this);
    }

    @Override
    public String toString() {
        return "Student{" +
                "name='" + name + '\'' +
                ", age=" + age +
                '}';
    }
}

class Teacher {
    private String name;
    private int age;

    public Teacher(String name, int age) {
        this.name = name;
        this.age = age;
    }

    public String getName() {
        return name;
    }

    public int getAge() {
        return age;
    }

    @Override
    public String toString() {
        return "Teacher{" +
                "name='" + name + '\'' +
                ", age=" + age +
                '}';
    }
}

class Course {
    private String name;
    private String label;
    private List<Student> students;

    public Course(String name, String label) {
        this.name = name;
        this.label = label;
        this.students = new ArrayList<>();
    }

    public String getName() {
        return name;
    }

    public String getLabel() {
        return label;
    }

    public List<Student> getStudents() {
        return students;
    }

    public void addStudent(Student student) {
        students.add(student);
        student.teacher = student.getTeacher();
    }

    @Override
    public String toString() {
        return "Course{" +
                "name='" + name + '\'' +
                ", label='" + label + '\'' +
                '}';
    }
}

这段代码演示了如何使用Stream对包含学生、老师和课程的复杂数据进行处理。它展示了在使用Stream时常见的一些操作,如排序、映射、过滤、分组等。根据实际需求,你可以在此基础上进一步扩展和优化数据操作。

3、公司部门用户和商品订单,及一些常见的数据操作

import java.util.*;
import java.util.stream.Collectors;
public class Stream {
    public static void main(String[] args) {
        List<User> users = Arrays.asList(
                new User("John", "Company A", "Department A"),
                new User("Tom", "Company B", "Department B"),
                new User("Alice", "Company A", "Department B")
        );

        List<Order> orders = Arrays.asList(
                new Order("Product A", 5),
                new Order("Product B", 3),
                new Order("Product A", 2)
        );

        // 1. 根据公司分组用户
        Map<String, List<User>> usersByCompany = users.stream()
                .collect(Collectors.groupingBy(User::getCompany));
        System.out.println("Users grouped by company: " + usersByCompany);

        // 2. 过滤用户,只保留来自公司 A 的用户
        List<User> usersFromCompanyA = users.stream()
                .filter(u -> u.getCompany().equals("Company A"))
                .collect(Collectors.toList());
        System.out.println("Users from Company A: " + usersFromCompanyA);

        // 3. 获取部门为 Department B 的用户数量
        long departmentBUserCount = users.stream()
                .filter(u -> u.getDepartment().equals("Department B"))
                .count();
        System.out.println("Department B user count: " + departmentBUserCount);

        // 4. 获取每个用户的订单总数
        Map<User, Integer> orderCountByUser = users.stream()
                .collect(Collectors.toMap(
                        u -> u,
                        u -> orders.stream()
                                .filter(o -> o.getProduct().equals("Product A"))
                                .mapToInt(Order::getQuantity)
                                .sum()
                ));
        System.out.println("Order count by user: " + orderCountByUser);

        // 5. 获取所有订单的总数量
        int totalOrderCount = orders.stream()
                .mapToInt(Order::getQuantity)
                .sum();
        System.out.println("Total order count: " + totalOrderCount);
    }

}

class User {
    private String name;
    private String company;
    private String department;

    public User(String name, String company, String department) {
        this.name = name;
        this.company = company;
        this.department = department;
    }

    public String getName() {
        return name;
    }

    public String getCompany() {
        return company;
    }

    public String getDepartment() {
        return department;
    }
}

class Order {
    private String product;
    private int quantity;

    public Order(String product, int quantity) {
        this.product = product;
        this.quantity = quantity;
    }

    public String getProduct() {
        return product;
    }

    public int getQuantity() {
        return quantity;
    }
}

这个示例代码展示了使用 JDK 8 Stream API 进行一些常见的数据处理操作,包括分组、过滤、计数和求和等操作。你可以根据实际的复杂数据结构和需求来进行相应的修改和扩展。

  4、公司部门用户和商品订单,n个示例
    过滤过程:
    假设有一个用户列表List<User> users,过滤出年龄大于18岁的用户:

    List<User> filteredUsers = users.stream()
            .filter(user -> user.getAge() > 18)
            .collect(Collectors.toList());
    映射过程:
    假设有一个用户列表List<User> users,提取所有用户的用户名:

    List<String> usernames = users.stream()
            .map(user -> user.getUsername())
            .collect(Collectors.toList());
    排序过程:
    假设有一个用户列表List<User> users,按照年龄从小到大排序:

    List<User> sortedUsers = users.stream()
            .sorted(Comparator.comparingInt(User::getAge))
            .collect(Collectors.toList());
    分组过程:
    假设有一个订单列表List<Order> orders,根据公司进行分组:

    Map<Company, List<Order>> ordersByCompany = orders.stream()
            .collect(Collectors.groupingBy(Order::getCompany));
    聚合操作:
    假设有一个订单列表List<Order> orders,计算所有订单的总金额:

    double totalAmount = orders.stream()
            .mapToDouble(Order::getAmount)
            .sum();
    扁平化处理:
    假设有一个公司列表List<Company> companies,获取所有公司的部门列表:

    List<Department> departments = companies.stream()
            .flatMap(company -> company.getDepartments().stream())
            .collect(Collectors.toList());
    匹配元素:
    假设有一个用户列表List<User> users,检查是否存在年龄大于等于30岁的用户:

    boolean anyMatch = users.stream()
            .anyMatch(user -> user.getAge() >= 30);
    查找元素:
    假设有一个用户列表List<User> users,查找年龄最大的用户:

    Optional<User> maxAgeUser = users.stream()
            .max(Comparator.comparingInt(User::getAge));
    限制结果集:
    假设有一个订单列表List<Order> orders,获取前5个订单:

    List<Order> limitedOrders = orders.stream()
            .limit(5)
            .collect(Collectors.toList());
    跳过元素:
    假设有一个商品列表List<Product> products,跳过前3个商品,获取剩下的商品:

    List<Product> skippedProducts = products.stream()
            .skip(3)
            .collect(Collectors.toList());
    去重处理:
    假设有一个整数列表List<Integer> numbers,去除重复的数字:

    List<Integer> distinctNumbers = numbers.stream()
            .distinct()
            .collect(Collectors.toList());
    并行处理:
    假设有一个订单列表List<Order> orders,使用并行流计算订单的总金额:

    double totalAmount = orders.parallelStream()
            .mapToDouble(Order::getAmount)
            .sum();
    使用reduce聚合操作:
    假设有一个订单列表List<Order> orders,计算所有订单的总金额,使用reduce操作:

    double totalAmount = orders.stream()
            .map(Order::getAmount)
            .reduce(0.0, Double::sum);
    使用findFirst查找第一个元素:
    假设有一个订单列表List<Order> orders,查找第一个购买商品为手机的订单:

    Optional<Order> firstMobileOrder = orders.stream()
            .filter(order -> order.getProduct().equals("手机"))
            .findFirst();
    对集合元素进行批量操作:
    假设有一个用户列表List<User> users,将所有用户的年龄加5并更新:

    List<User> updatedUsers = users.stream()
            .peek(user -> user.setAge(user.getAge() + 5))
            .collect(Collectors.toList());
    多级分组:
    假设有一个商品列表List<Product> products,按照公司和部门进行多级分组:

    Map<Company, Map<Department, List<Product>>> productsByCompanyAndDepartment = products.stream()
            .collect(Collectors.groupingBy(Product::getCompany,
                    Collectors.groupingBy(Product::getDepartment)));
    使用flatMap进行嵌套处理:
    假设有一个公司列表List<Company> companies,获取所有公司的所有部门的所有员工姓名:

    List<String> employeeNames = companies.stream()
            .flatMap(company -> company.getDepartments().stream())
            .flatMap(department -> department.getEmployees().stream())
            .map(Employee::getName)
            .collect(Collectors.toList());
    查找满足条件的任意元素:
    假设有一个商品列表List<Product> products,查找任意一件库存大于0的商品:

    Optional<Product> anyProduct = products.stream()
            .filter(product -> product.getStock() > 0)
            .findAny();
    统计元素个数:
    假设有一个用户列表List<User> users,统计用户的数量:

    long userCount = users.stream()
            .count();
    使用forEach进行迭代操作:
    假设有一个订单列表List<Order> orders,打印所有订单的信息:

            orders.stream()
            .

    forEach(System.out::println);

    并行处理处理大数据量:
    假设有一个非常大的用户列表List<User> users,使用并行流进行处理:

            users.parallelStream()
            .

    filter(user ->user.getAge()>18)
            .

    forEach(System.out::println);

    使用collect进行自定义的聚合操作:
    假设有一个商品列表List<Product> products,将所有商品的名称用逗号连接起来:

    String names = products.stream()
            .map(Product::getName)
            .collect(Collectors.joining(", "));
    使用Optional处理可能为空的值:
    假设有一个List<Optional<User>> userList,筛选出非空的用户列表:

    List<User> nonEmptyUserList = userList.stream()
            .filter(Optional::isPresent)
            .map(Optional::get)
            .collect(Collectors.toList());
    连接字符串:
    假设有一个商品列表List<Product> products,将所有商品的名称以逗号分隔连接成一个字符串:

    String joinedNames = products.stream()
            .map(Product::getName)
            .collect(Collectors.joining(", "));
    对元素进行分页处理:
    假设有一个订单列表List<Order> orders,将订单按照每页10个进行分页:

    int pageSize = 10;
    int totalPages = (int) Math.ceil((double) orders.size() / pageSize);

    List<List<Order>> paginatedOrders = IntStream.range(0, totalPages)
            .mapToObj(page -> orders.stream()
                    .skip(page * pageSize)
                    .limit(pageSize)
                    .collect(Collectors.toList()))
            .collect(Collectors.toList());
    使用IntStream进行数值操作:
    假设有一个整数列表List<Integer> numbers,计算列表中所有偶数的平方和:

    int sumOfEvenSquares = numbers.stream()
            .filter(number -> number % 2 == 0)
            .mapToInt(number -> number * number)
            .sum();
    使用maxmin获取最大值和最小值:
    假设有一个整数列表List<Integer> numbers,找到列表中的最大值和最小值:

    Optional<Integer> maxNumber = numbers.stream()
            .max(Integer::compareTo);

    Optional<Integer> minNumber = numbers.stream()
            .min(Integer::compareTo);
    使用toMap将集合转换为Map
    假设有一个用户列表List<User> users,将用户按照ID作为键转换为Map

    Map<Integer, User> userMap = users.stream()
            .collect(Collectors.toMap(User::getId, Function.identity()));
    使用anyMatchallMatch进行条件判断:
    假设有一个用户列表List<User> users,检查是否所有用户的年龄都大于18岁:

    boolean allAdults = users.stream()
            .allMatch(user -> user.getAge() > 18);

    boolean anyAdult = users.stream()
            .anyMatch(user -> user.getAge() > 18);
    使用distinctsorted进行去重和排序:
    假设有一个整数列表List<Integer> numbers,去除重复值并对值进行排序:

    List<Integer> distinctSortedNumbers = numbers.stream()
            .distinct()
            .sorted()
            .collect(Collectors.toList());
    使用flatMap将多个列表合并为一个列表:
    假设有一个公司列表List<Company> companies,将每个公司的部门列表合并成一个部门列表:

    List<Department> allDepartments = companies.stream()
            .flatMap(company -> company.getDepartments().stream())
            .collect(Collectors.toList());
    使用reduce进行自定义聚合操作:
    假设有一个订单列表List<Order> orders,计算所有订单的总金额:

    double totalAmount = orders.stream()
            .map(Order::getAmount)
            .reduce(0.0, Double::sum);
    使用partitioningBy进行分区操作:
    假设有一个商品列表List<Product> products,按照库存是否大于0进行分区:

    Map<Boolean, List<Product>> partitionedProducts = products.stream()
            .collect(Collectors.partitioningBy(product -> product.getStock() > 0));
    使用zip操作将两个流合并为一个流:
    假设有一个用户列表List<User> users和一个商品列表List<Product>products,将两个列表合并为一个交替的流:

    Stream<Object> interleavedStream = StreamUtils.zip(users.stream(), products.stream());
    使用iterate生成一个无限流:
    假设需要生成一个自增的整数序列:

    Stream<Integer> sequentialNumberStream = Stream.iterate(0, i -> i + 1);
    使用toList将流转换为列表:
    假设有一个用户流Stream<User> userStream,将其转换为用户列表:

    List<User> userList = userStream.collect(Collectors.toList());
    使用toSet将流转换为集合:
    假设有一个商品流Stream<Product> productStream,将其转换为商品集合:

    Set<Product> productSet = productStream.collect(Collectors.toSet());
    使用joining将流转换为字符串:
    假设有一个部门流Stream<Department> departmentStream,将其转换为部门名称的逗号分隔字符串:

    String departmentNames = departmentStream.map(Department::getName)
            .collect(Collectors.joining(", "));
    使用summarizingInt计算流中的统计数据:
    假设有一个订单流Stream<Order> orderStream,计算订单金额的统计数据:

    DoubleSummaryStatistics orderStatistics = orderStream
            .collect(Collectors.summarizingDouble(Order::getAmount));
System.out.println("Total Orders: "+orderStatistics.getCount());
System.out.println("Total Amount: "+orderStatistics.getSum());
System.out.println("Average Amount: "+orderStatistics.getAverage());
System.out.println("Max Amount: "+orderStatistics.getMax());
System.out.println("Min Amount: "+orderStatistics.getMin());
    使用toMap将流转换为自定义的Map
    假设有一个用户流Stream<User> userStream,将其转换为以ID为键、用户对象为值的Map

    Map<Integer, User> userMap = userStream.collect(Collectors.toMap(User::getId, Function.identity()));
    使用groupingByConcurrent进行并发分组操作:
    假设有一个订单列表List<Order> orders,按照公司进行并发分组:

    ConcurrentMap<Company, List<Order>> ordersByCompany = orders.stream()
            .collect(Collectors.groupingByConcurrent(Order::getCompany));
    使用flatMapToInt计算流中元素的数值总和:
    假设有一个整数列表List<Integer> numbers,计算列表中所有元素的数值总和:

    int sum = numbers.stream()
            .flatMapToInt(IntStream::of)
            .sum();
    使用peek进行调试操作:
    假设有一个商品列表List<Product> products,在对每个商品进行其他操作之前,在控制台打印商品信息:

    List<Product> modifiedProducts = products.stream()
            .peek(product -> System.out.println("Processing product: " + product.getName()))
            .map(product -> /* 进行其他操作 */)
            .collect(Collectors.toList());
    五、
    常用总结
            根据mapkey进行排序
    升序排列
    Map<LocalDateTime, List<ExerciseReport>> twelveReportMap = twelveReportDataList.stream()
            .collect(Collectors.groupingBy(ExerciseReport::getCreateDate));
        System.out.println("twelveReportMap"+twelveReportMap);
    //根据时间进行升序排序
    Map<LocalDateTime, List<ExerciseReport>> result = new LinkedHashMap<>();
        twelveReportMap.entrySet().

    stream().

    sorted(Map.Entry.comparingByKey()).

    forEachOrdered(x ->result.put(x.getKey(),x.getValue()));
    降序排列
    Map<LocalDateTime, List<ExerciseReport>> twelveReportMap = twelveReportDataList.stream()
            .collect(Collectors.groupingBy(ExerciseReport::getCreateDate));
    //根据时间进行升序排序
    Map<LocalDateTime, List<ExerciseReport>> result = new LinkedHashMap<>();
        twelveReportMap.entrySet().

    stream().

    sorted(Collections.reverseOrder(Map.Entry.comparingByKey())).

    forEachOrdered(x ->result.put(x.getKey(),x.getValue()));
    String[] idStr转化为
    List<Long> ids
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;

    public class Main {
        public static void main(String[] args) {
            String[] idStr = {"1", "2", "3", "4", "5"};

            List<Long> ids = Arrays.stream(idStr)
                    .map(Long::parseLong)
                    .collect(Collectors.toList());

            System.out.println(ids);
        }
    }

       感谢大家的阅读,觉得有用的朋友可以收藏点赞,有问题的朋友可以留下你的问题一起交流讨论。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/3844.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Kubernetes - CentOS7搭建k8s_v1.18集群高可用(kubeadm/二进制包部署方式)实测配置验证手册

Kubernetes - CentOS7搭建k8s集群高可用&#xff08;kubeadm/二进制包部署方式&#xff09;实测配置验证手册 前言概述&#xff1a; 一、Kubernetes—k8s是什么 Kubernetes 这个名字源于希腊语&#xff0c;意为“舵手“或”飞行员"。 Kubernetes&#xff0c;简称K8s&#…

计算机网络大框架图形

如标题&#xff0c;精心画了一个计算机网络的框架性的图&#xff0c;包含了计算机网络的核心思想&#xff0c;在此分享和备份下。各层具体协议参考TCP/IP常用协议栈图解-CSDN博客

[论文阅读] 3D感知相关论文简单摘要

Adaptive Fusion of Single-View and Multi-View Depth for Autonomous Driving 提出了一个单、多视图融合深度估计系统&#xff0c;它自适应地集成了高置信度的单视图和多视图结果 动态选择两个分支之间的高置信度区域执行融合 提出了一个双分支网络&#xff0c;即一个以单…

uniapp 微信小程序 获取openid,手机号进行登录,配合后端

流程&#xff1a;登录注册功能,通过uni.getUserProfile获取wxcode,通过wxcode传给后端获取openid,sessionkey,unionid。 通过<u-button type"success" open-type"getPhoneNumber" getphonenumber"decryptPhoneNumber">一键登录</u-butt…

HTML批量文件上传方案——图像预览方式

作者:私语茶馆 1.HTML多文件上传的关键方案 多文件上传包括:文件有效性校验,文件预览、存储和进度展示多个方面,本章节介绍的是文件预览的实现方案。 2.文件上传前预览 2.1.效果 选择文件前: 选择文件后: 2.2.CSS文件代码 StorageCenter.css代码 html {font-family:…

uniapp app权限说明弹框2024.4.23更新

华为上架被拒绝 用uni-app开发的app&#xff0c;上架华为被拒&#xff0c;问题如下&#xff1a; 您的应用在运行时&#xff0c;未见向用户告知权限申请的目的&#xff0c;向用户索取&#xff08;电话、相机、存储&#xff09;等权限&#xff0c;不符合华为应用市场审核标准。…

HWOD:输出单向链表中倒数第k个节点

一、知识点 不确定输入的数据有多少组时&#xff0c;可以用 if(scanf()>0) 作为判断条件 如果要处理多组数据&#xff0c;不一定要为每组数据申请空间。可以存储一组&#xff0c;处理一组&#xff0c;存储数据的空间清零之后继续存储下一组数据。额外申请空间&#xff0…

MySQL函数之单行函数

1.前言 我们在使用 SQL 语言的时候&#xff0c;不是直接和这门语言打交道&#xff0c;而是通过它使用不同的数据库软件&#xff0c;即DBMS。DBMS 之间的差异性很大&#xff0c;远大于同一个语言不同版本之间的差异。实际上&#xff0c;只有很少的函数是被 DBMS 同时支持的。比…

微信小程序:12.页面导航

什么是页面导航 页面导航指的是页面之间的相互跳转。例如&#xff0c;浏览器中实现的页面导航的方式有两种&#xff1a; 连接location.href 小程序中实现页面导航的两种方式 声明式导航 在页面上声明一个导航组件 通过点击组件实现页面跳转 导航TabBar页面 是指配置TabB…

Unity自动化之自动构建图集与压缩

文章目录 前言一、UI图集的压缩unity2020之前的版本使用图集unity2020之后的版本使用图集 二、非UI图集压缩总结 前言 为降低DrawCall&#xff0c;我们需要将多个图片构建在图集上。同时还有个好处&#xff0c;可以自动补齐图片补齐2的幂次方或正方形图&#xff0c;这样便可以…

前端实现将当前页面内容下载成图片(图片可做到高清画质)

插件背景&#xff1a; html2canvas可以把你想要转变的元素变为图片&#xff0c;使用file-saver下载图片。 1、安装html2canvas、file-saver npm install html2canvasnpm install file-saver --save 2、在Vue组件中引入并使用html2canvas、file-saver import html2canvas fro…

C#基础|对象初始化器与构造方法对比总结

哈喽&#xff0c;你好啊&#xff0c;我是雷工&#xff01; 01 对象初始化器的作用 为了更加灵活的初始化对象的“属性”&#xff0c;是对构造化方法的补充。 02 构造方法总结 2.1、存在的必要性&#xff1a;一个类中&#xff0c;至少要有一个构造方法&#xff08;有无参数均…

合合信息引领AI场景化革新,供应链金融智能化审核全面升级!

官.网地址&#xff1a;合合TextIn - 合合信息旗下OCR云服务产品 随着供给侧结构性改革的深入推进和产业结构的不断升级&#xff0c;金融机构在监管部门的指导下&#xff0c;积极拓展供应链金融业务&#xff0c;取得了显著成效。这一举措有效缓解了上下游中小企业的融资困难&a…

国产麒麟v10系统下打包electron+vue程序,报错unknown output format set

报错如下&#xff1a; 报错第一时间想到可能是代码配置原因报错&#xff0c;查看代码似乎感觉没啥问题 又查看具体报错原因可能是因为icon的原因报错&#xff0c;后面查阅发现ico在各系统平台会不兼容&#xff0c;也就是ico是给win下使用的&#xff0c;此处改下图标格式就ok&am…

Unreal Engine动态添加Button实例

在控件蓝图中添加容器&#xff0c;注意命名不要有中文 C代码中找到容器实例 1 2 3 4 5 6 7 8 UVerticalBox* verticalBox Cast<UVerticalBox>(CurrentWidget->GetWidgetFromName(TEXT("VerticalBox_0"))); if (verticalBox ! nullptr) { UScrollBox* …

AJAX——黑马头条-数据管理平台项目

1.项目介绍 功能&#xff1a; 登录和权限判断查看文章内容列表&#xff08;筛选&#xff0c;分页&#xff09;编辑文章&#xff08;数据回显&#xff09;删除文章发布文章&#xff08;图片上传&#xff0c;富文本编辑器&#xff09; 2.项目准备 技术&#xff1a; 基于Bootst…

ShardingSphere 5.x 系列【26】 数据分片原理之 SQL 路由

有道无术,术尚可求,有术无道,止于术。 本系列Spring Boot 版本 3.1.0 本系列ShardingSphere 版本 5.4.0 源码地址:https://gitee.com/pearl-organization/study-sharding-sphere-demo 文章目录 1. 概述2. 携带分片键2.1 直接路由2.2 标准路由2.3 笛卡尔路由3. 不携带分片…

【内网横向】SSH协议隧道搭建详解

什么是SSH隧道 SSH隧道是通过Secure Shell&#xff08;SSH&#xff09;协议在两个网络节点之间创建的加密通道。它可以用于安全地传输数据&#xff0c;绕过网络限制或保护数据免受窃听。通过SSH隧道&#xff0c;可以在两个网络之间建立安全的连接&#xff0c;例如在本地计算机和…

济宁市中考报名照片要求及手机拍照采集证件照方法

随着中考报名季的到来&#xff0c;并且进入了中考报名演练阶段&#xff0c;济宁市的广大考生和家长都开始忙碌起来。报名过程中&#xff0c;上传一张符合要求的证件照是必不可少的环节。本文将详细介绍济宁市中考报名照片的具体要求&#xff0c;并提供一些实用的手机拍照采集证…

BUUCTF--web(2)

1、[HCTF 2018]admin1 打开题目后发现有注册和登录两个页面&#xff0c;因为题目提示admin&#xff0c;尝试用admin进行爆破 爆破得到密码为123 登录得到flag 2、[护网杯 2018]easy_tornado1 打开题目后有三个文件&#xff0c;分别打开查看 在url地址栏中发现包含两个参数&a…