<-----Got the solution.. Used linkedHashMap and was able to store the sorted key values in an array. Here is the link for the code. Thanks everyone for helping! :)
<-----I am sorry for posting this unclear question. This is my first time using hashmap and hence i was confused. Have tried to explain this question in a better way here - store key values of hashmap in string[] (SOLVED)
Please suggest some solutions. Thanks! ----->
I have a sorted hashmap based on values. I want to extract the keys from the sorted map and store them in a String[] array. The order of the keys(sorted by values) is important. I used this code to sort the hashmap on values - http://www.xinotes.org/notes/note/306/
To extract the key array, I tried
String[] keys = (String[])( hm.keySet().toArray( new String[hm.size()] ) )
(here hm is the hashmap)
But this method didnt work. The keys string[] has the keys but not in the sorted order I want. Please help!