Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,911 questions

51,843 answers

573 users

How to sort HashMap keys in ArrayList and keySet in Java

1 Answer

0 votes
import java.util.Collections;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Set;

public class MyClass {
    public static void main(String args[]) {
        HashMap<String, Integer> hashmap = new HashMap<>();
  
        hashmap.put("java", 1);
        hashmap.put("c++", 2);
        hashmap.put("c", 3);
        hashmap.put("swift", 4);
        hashmap.put("python", 5);
        
        Set<String> set = hashmap.keySet();
        ArrayList<String> list = new ArrayList<String>();
        list.addAll(set);
        Collections.sort(list);

        for (String key : list) {
            System.out.println(key + " : " + hashmap.get(key));
        }
    }
}
  
  
  
  
/*
run:
  
c : 3
c++ : 2
java : 1
python : 5
swift : 4
  
*/

 



answered Oct 11, 2020 by avibootz

Related questions

1 answer 131 views
1 answer 118 views
1 answer 132 views
1 answer 115 views
115 views asked Mar 14, 2021 by avibootz
1 answer 133 views
133 views asked Oct 10, 2020 by avibootz
...