What is the best way to convert a Map<key,value> to a List<value>? Just iterate over all values and insert them in a list or am I overlooking something?

link|improve this question
feedback

6 Answers

up vote 95 down vote accepted
List<Value> list = new ArrayList<Value>(map.values());

assuming:

Map<Key,Value> map;
link|improve this answer
feedback

The issue here is that Map has two values (a key and value), while a List only has one value (an element).

Therefore, the best that can be done is to either get a List of the keys or the values. (Unless we make a wrapper to hold on to the key/value pair).

Say we have a Map:

Map<String, String> m = new HashMap<String, String>();
m.put("Hello", "World");
m.put("Apple", "3.14");
m.put("Another", "Element");

The keys as a List can be obtained by creating a new ArrayList from a Set returned by the Map.keySet method:

List<String> list = new ArrayList<String>(m.keySet());

While the values as a List can be obtained creating a new ArrayList from a Collection returned by the Map.values method:

List<String> list = new ArrayList<String>(m.values());

The result of getting the List of keys:

Apple
Another
Hello

The result of getting the List of values:

3.14
Element
World
link|improve this answer
It should be noted that the order of values returned by those methods is not defined and for HashMap and similar un-sorted Map implementations it will be effectively random. – Joachim Sauer Mar 30 '11 at 8:02
Yes, you would have to know it is a LinkedHashMap or something of that sort. The problem with the original question is that the question is misstated, that is it needs editing. The question is not to convert a Map to a List, but rather how to get the values of the map as a List. The method values gives you a Collection, but not a list, and hence the need for a neat little trick. – demongolem Feb 11 at 19:47
feedback

a list of what ?

Assuming map is your instance of Map

  • map.values() will return a Collection containing all of the map's values.
  • map.keys() will return a Set containing all of the map's keys.
link|improve this answer
feedback

I guess you want to convert the values contained in the Map to a list? Easiest is to call the values() method of the Map interface. This will return the Collection of value objects contained in the Map.

Note that this Collection is backed by the Map object and any changes to the Map object will reflect here. So if you want a separate copy not bound to your Map object, simply create a new List object like an ArrayList passing the value Collection as below.

ArrayList<String> list = new ArrayList<String>(map.values());
link|improve this answer
feedback

map.entrySet() gives you a collection of Map.Entry objects containing both key and value. you can then transform this into any collection object you like, such as new ArrayList(map.entrySet());

link|improve this answer
feedback

The "trap" with map.EntrySet is that this interface does not implemet Serializable. In MyFaces, we got exception if you try to loop over the collection to display the data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.