Help Save Code2care! 😢

I've lost 99% of my revenue to AdBlockers & AI. Your support could be the lifeline that keeps this passion project alive!

Buy Code2care a Coffee QR Code

Scan to Buy Me A Coffee and help me continue coding for you!

Java: Convert Stream to List


Note: This works with Java 8 or above!

Convert Stream to List

In order to convert a Stream to a List, make use of the of the toList() method form the Collectors util class when collecting the Stream.


Example:
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;

public class StreamToListExamples {

    public static void main(String[] args) {

        Stream<Integer> streamOfIntegers = Stream.of(1,2,4,5,6,7,8,9,10);
        //Stream -> List
        List<Integer> listOfIntegers = streamOfIntegers.collect(Collectors.toList());
        System.out.println(listOfIntegers);

        Stream<String> streamOfStrings = Stream.of("A","B","C","D","E");
        //Stream -> List
        List<String> listOfStrings = streamOfStrings.collect(Collectors.toList());
        System.out.println(listOfStrings);

    }
}

Output:

[1, 2, 4, 5, 6, 7, 8, 9, 10]

[A, B, C, D, E]

You can download this article in various formats for your convenience. Choose from the options below:

Facing issues? Have Questions? Post them here! I am happy to answer!

Author Info:

Rakesh (He/Him) has a Masters Degree in Computer Science with over 15+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org

Copyright Code2care © 2024 | Privacy Policy | About Us | Contact Us | Search