I have an ArrayList<HashMap<String, String>>. I'd like to quickly extract from this a new ArrayList<String> comprising all the keys.
How do I do this?
feedback
|
|
I suggest you do
If you're not interested in duplicate keys (i.e., if you don't want two identical entries in After traversal you could do | ||||
feedback
|