up vote 9 down vote favorite
1
share [g+] share [fb]

I need to convert a HashMap<String, Object> to an array; could anyone show me how it's done?

link|improve this question

2  
you want the keys, the values, or both? – harto Jul 7 '09 at 5:47
feedback

6 Answers

up vote 22 down vote accepted
 hashMap.keySet().toArray(); // returns an array of keys
 hashMap.values().toArray(); // returns an array of values
link|improve this answer
1  
beat me to it :( – jrharshath Jul 7 '09 at 5:48
gotta get the low hanging fruit where i can find it. :) – landon9720 Jul 7 '09 at 5:49
Actually, this code offers no guarantee that hashMap.keySet().toArray()[0] will be the original key for hashMap.values().toArray()[0] from the original Map. So this is extremely dangerous – CrackerJack9 Aug 7 '11 at 18:20
1  
@CrackerJack9 can you explain? – Jakobud Nov 2 '11 at 15:27
1  
The keys wont correspond to their values across the two arrays. – landon9720 Nov 2 '11 at 18:50
show 1 more comment
feedback

If you want the keys and values, you can always do this via the entrySet:

hashMap.entrySet().toArray(); // returns a Map.Entry<K,V>[]

From each entry you can (of course) get both the key and value via the getKey and getValue methods

link|improve this answer
+1 that's exactly what I was looking for! – Kenny Cason Aug 23 '10 at 19:25
feedback

If you have HashMap<String, SomeObject> hashMap then

hashMap.keySet().toArray();

will return an Object[]. If instead you want an array of the type SomeObject, you could use:

hashMap.keySet().toArray(new SomeObject[0]);

link|improve this answer
feedback
Map<String, String> map = new HashMap<String, String>();
map.put("key1", "value1");
map.put("key2", "value2");

Object[][] twoDarray = new String[map.size()][2];

Object[] keys = map.keySet().toArray();
Object[] values = map.values().toArray();

for (int row = 0; row < twoDarray.length; row++) {
    twoDarray[row][0] = keys[row];
    twoDarray[row][1] = values[row];
}

for (int i = 0; i < twoDarray.length; i++) {
    for (int j = 0; j < twoDarray[i].length; j++) {
        System.out.println(twoDarray[i][j]);
    }
}
link|improve this answer
feedback

To guarantee the correct order for each array of Keys and Values, use this (the other answers use individual Sets which offer no guarantee.

Map<String, Object> map = new HashMap<String, Object>();
String[] keys = new String[map.size()];
Object[] values = new Object[map.size()];
int index = 0;
for (Map.Entry<String, Object> mapEntry : map.entrySet()) {
    keys[index] = mapEntry.getKey();
    values[index] = mapEntry.getValue();
    index++;
}
link|improve this answer
feedback

An alternative to CrackerJacks suggestion, if you want the HashMap to maintain order you could consider using a LinkedHashMap instead. As far as im aware it's functionality is identical to a HashMap but it is FIFO so it maintains the order in which items were added.

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.