Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
32.8K+ articles
Java
9.6K+ articles
Misc
8.2K+ articles
Java-Functions
4.2K+ articles
Java Programs
1.6K+ articles
Java - util package
1.6K+ articles
java-intstream
35+ articles
Java-Stream interface
29+ articles
Java-Stream-programs
27+ articles
Java-Collectors
17+ articles
java-stream
142+ posts
Recent Articles
Popular Articles
Correct Ways to Close InputStream and OutputStream in Java with Examples
Last Updated: 12 March 2021
Since IO needs you to deal with streams, channels, and file descriptors that need to be closed properly, it is uncomfortable for Java developers to deal with them. Because...
read more
Java
Picked
java-stream
Collecting a Stream to an Immutable Collection in Java
Last Updated: 25 October 2021
Streams and Collectors were introduced in Java 8 introduced the concept of Streams. A Stream is a sequence, a sequence of objects. We generate Streams from input sources l...
read more
Java
Picked
Java-Collections
java-stream
Intermediate Methods of Stream in Java
Last Updated: 18 July 2022
The Stream API is used to process collections of objects. A stream is a sequence of objects that supports various methods which can be pipelined to produce the desired res...
read more
Java
java-stream
Difference Between FileInputStream and ObjectInputStream in Java
Last Updated: 19 July 2022
FileInputStream class extracts input bytes from a file in a file system. FileInputStream is meant for reading streams of raw bytes such as image data. For reading streams ...
read more
Java
Difference Between
Picked
Java-I/O
java-stream
Comparing Streams to Loops in Java
Last Updated: 20 October 2022
A stream is an ordered pipeline of aggregate operations(filter(), map(), forEach(), and collect()) that process a (conceptually unbounded) sequence of elements. A stream p...
read more
Java
Difference Between
Picked
java-stream
Flattening Nested Collections in Java
Last Updated: 15 March 2024
A stream is a sequence of objects that supports various methods that can be pipelined to produce the desired result. Stream is used to compute elements as per the pipeline...
read more
Java
Picked
Java-Collections
java-stream
Difference Between ObjectInputStream and ObjectOutputStream in Java
Last Updated: 06 January 2023
In a software project, in many instances, there are necessities to transfer the data, and it can be handled by using ObjectOutputStream and ObjectInputStream from Java IO ...
read more
Java
Difference Between
Picked
java-stream
Java 8 Stream Tutorial
Last Updated: 05 April 2025
Java 8 introduces Stream, which is a new abstract layer, and some new additional packages in Java 8 called java.util.stream. A Stream is a sequence of components that can ...
read more
Java
java-stream
Tutorials
Find N'th Highest Salary Using Stream API
Last Updated: 08 February 2024
Consider a scenario where you have a dataset containing various salary values, and you need to find the Nth highest salary. This task might arise in applications ranging f...
read more
Java
Picked
Geeks Premier League
java-stream
Geeks Premier League 2023
Convert String to Stream of Chars in Java
Last Updated: 26 January 2024
The StringReader class from the java.io package in Java can be used to convert a String to a character stream. When you need to read characters from a string as though it ...
read more
Java
Java Programs
Picked
Java-Strings
java-stream
Java Examples
Perform Parallel Processing on Arrays in Java Using Parallel Streams
Last Updated: 07 February 2024
Java's strong idea of parallel processing enables the simultaneous execution of tasks, enhancing application performance. Using Java's parallel streams is one approach to ...
read more
Java
Java Programs
Picked
java-stream
Java Examples
How to Perform Parallel Processing on Arrays in Java Using Streams?
Last Updated: 14 February 2024
In Java, parallel processing helps to increase overall performance. Arrays may be processed in parallel in Java by using Streams API. When working with big datasets or com...
read more
Java
Java Programs
Picked
java-stream
Java Examples
How to Convert String to Char Stream in Java without Using Library Functions?
Last Updated: 12 February 2024
In Java, we can convert a string to a char stream with a simple built-in method .toCharArray(). Here, we want to convert the string to a char stream without using built-in...
read more
Java
Java Programs
Picked
Java-Strings
java-stream
Java Examples
How To Install Flink?
Last Updated: 15 July 2024
Flink is an open-source stream processing framework developed by the Apache Software Foundation. It's designed to process real-time data streams and batch data processing....
read more
Installation Guide
java-stream
How To
Java Stream & Lambda Expression Coding Practice Problems
Last Updated: 05 March 2025
Java Streams and Lambda Expressions provide a powerful way to perform functional-style operations on collections. This collection of Java Stream and Lambda Expression prac...
read more
Java
java-stream
java-lambda
Practice Questions
1
2
3
4
...
10
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !