VOOZH about

URL: https://www.geeksforgeeks.org/java/convert-set-stream-java/

⇱ Convert a Set to Stream in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Convert a Set to Stream in Java

Last Updated : 11 Jul, 2025

Set interface extends Collection interface and Collection has stream() method that returns a sequential stream of the collection. Below given are some examples to understand the implementation in a better way. Example 1 : Converting Integer HashSet to Stream of Integers. 

Output:

2 4 6 8 10 12 

Example 2 : Converting HashSet of String to stream. 

Output:

GeeksforGeeks Geeks for GeeksQuiz

Note : Objects that you insert in HashSet are not guaranteed to be inserted in same order. Objects are inserted based on their hash code. Convert Stream to Set in Java

Comment