

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
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
Convert HashSet to TreeSet in Java
At first, create a HashSet with string values −
HashSet<String> hashSet = new HashSet<String>(); hashSet.add("Bradley"); hashSet.add("Katie"); hashSet.add("Brad"); hashSet.add("Amy"); hashSet.add("Ryan"); hashSet.add("Jamie");
Now, convert the HashSet to TreeSet −
Set<String> set = new TreeSet<String>(hashSet);
Example
Following is the program to convert HashSet to TreeSet in Java −
import java.util.HashSet; import java.util.Set; import java.util.TreeSet; public class Demo { public static void main(String[] args) { HashSet<String> hashSet = new HashSet<String>(); hashSet.add("Bradley"); hashSet.add("Katie"); hashSet.add("Brad"); hashSet.add("Amy"); hashSet.add("Ryan"); hashSet.add("Jamie"); hashSet.add("Kevin"); hashSet.add("David"); System.out.println("HashSet = "+ hashSet); Set<String> set = new TreeSet<String>(hashSet); System.out.println("TreeSet = "+set); } }
Output
HashSet = [Kevin, Jamie, Ryan, Bradley, Katie, David, Brad, Amy] TreeSet = [Amy, Brad, Bradley, David, Jamie, Katie, Kevin, Ryan]
- Related Questions & Answers
- Set vs HashSet vs TreeSet in Java
- Convert array to HashSet in Java
- How to convert Stream to TreeSet in Java?
- Convert an ArrayList to HashSet in Java
- Java Program to convert HashSet to Enumeration
- Convert elements in a HashSet to an array in Java
- TreeSet in Java
- HashSet in Java
- Create a TreeSet in Java
- Initialize HashSet in Java
- Initializing HashSet in Java
- The HashSet in Java
- Add elements to HashSet in Java
- How to sort HashSet in Java
- Get last value in Java TreeSet
Advertisements