Is there anyone who knows how to convert a Map to a List
I found here something like this :
List<Value> list = new ArrayList<Value>(map.values());
But this is going to store just the value of the Map to the List
What I want to do is : copy the Key & the Value to the List
So, do you know how to achieve this ?
Map<String, String>and aList<String>so I want to do like the example showed in the post but by copying both (key & value) – Schneider Aug 22 '11 at 12:02