Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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
