Basic Question: How do I get the values of a HashMap as a List?
|
|||||||||
|
|
Assuming you have:
For a list of values:
For a list of keys:
Note that the order of the keys and values will be unreliable with a HashMap; use a LinkedHashMap if you need to preserve one-to-one correspondence of key and value positions in their respective lists. |
|||
|
|
|
Basically you should not mess the question with answer, because it is confusing. Then you could specify what convert mean and pick one of this solution
|
|||||||||||
|
|
If you only want it to iterate over your HashMap, no need for a list:
Of course, if you want to modify your map structurally (i.e. more than only changing the value for an existing key) while iterating, then you better use the "copy to ArrayList" method, since otherwise you'll get a ConcurrentModificationException. Or export as an array:
|
|||
|
|
|
If you wanna maintain the same order in your list, say: your Map looks like:
and you want your list looks like
you will have to iterate through the Map:
|
|||
|
|

CollectionorSettoArrayListdoes not make much sense to me. Just return the collection or the Set that you get from HashMap – Nishant Mar 30 '11 at 7:44