 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java Program to convert Stream to List
Declare and initialize an Integer array:
Integer[] arr = {50, 100, 150, 200, 300, 400, 500, 600, 700, 800, 1000}; Now, create a stream with the above elements:
Stream<Integer> stream = Arrays.stream(arr);
To convert the above stream to list, use Collectors.toList():
stream.collect(Collectors.toList()
The following is an example to convert Stream to List:
Example
import java.util.Arrays; import java.util.stream.Collectors; import java.util.stream.Stream; public class Demo {    public static void main(String[] args) {       Integer[] arr = {50, 100, 150, 200, 300, 400, 500, 600, 700, 800, 1000};       Stream<Integer> stream = Arrays.stream(arr);       System.out.println("Stream = "+stream.collect(Collectors.toList()));    } }  Output
Stream = [50, 100, 150, 200, 300, 400, 500, 600, 700, 800, 1000]
Advertisements
 