vote up 0 vote down star

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

flag

78% accept rate
1  
you want the keys, the values, or both? – harto Jul 7 at 5:47

2 Answers

vote up 8 vote down check
 hashMap.keySet().toArray(); // returns an array of keys
 hashMap.values().toArray(); // returns an array of values
link|flag
1  
beat me to it :( – harshath.jr Jul 7 at 5:48
gotta get the low hanging fruit where i can find it. :) – landon9720 Jul 7 at 5:49
vote up 5 vote down

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|flag

Your Answer

Get an OpenID
or

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