How to sort HashMap by value in ascending order Java

1 Answer

0 votes
import java.util.stream.Collectors;
import java.util.LinkedHashMap;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Map;
  
public class MyClass {
    public static void main(String args[]) {
        HashMap<String, Integer> hmp = new HashMap<String, Integer>();
   
        hmp.put("java", 4);
        hmp.put("c++", 2);
        hmp.put("c", 6);
        hmp.put("python", 5);
        hmp.put("c#", 1);
        hmp.put("php", 3);
           
        LinkedHashMap<String, Integer> ascendingSortedMap = hmp.entrySet()
                .stream()
                .sorted(Map.Entry.comparingByValue())
                .collect(Collectors.toMap(
                Map.Entry::getKey,
                Map.Entry::getValue,
                (oldValue, newValue) -> oldValue, LinkedHashMap::new));

        System.out.println(ascendingSortedMap);
 
    }
}
       
       
       
       
/*
run:
       
{c#=1, c++=2, php=3, java=4, python=5, c=6}
       
*/

 



answered Apr 29, 2023 by avibootz

Related questions

2 answers 139 views
1 answer 106 views
1 answer 110 views
1 answer 152 views
1 answer 148 views
1 answer 230 views
...