Monday 27 November 2017

java - Sort a Map by values

I am relatively new to Java, and often find that I need to
sort a Map on the
values.



Since the values are not unique, I find
myself converting the keySet into an
array, and sorting that array through array
sort
with a custom comparator that sorts on
the value associated with the key.



Is there an
easier way?

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...