How print out the contents of a HashMap in ascending order based on its values?

前端 未结 13 1515
春和景丽
春和景丽 2020-12-24 11:58

I have this HashMap that I need to print out in ascending order according to the values contained in it (not the keys

13条回答
  •  遥遥无期
    2020-12-24 12:55

    Java 8

    map.entrySet().stream().sorted(Map.Entry.comparingByValue()).forEach(System.out::println);
    

提交回复
热议问题