Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Java: iterate through HashMap

I want to get all the keys contained in a HashMap.

something like this :

Collection<String> c = hashmap.values();
Iterator<String> itr = c.iterator();
while(itr.hasNext()) {
    System.out.println(itr.next());
}

But the HashMap doesn't have a method that returns a Collection of keys.

So what do you suggest as solution ?

share|improve this question

marked as duplicate by karim79, Nayish, Schneider, paxdiablo, adarshr Aug 24 '11 at 9:39

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

6 Answers

It does: .keySet().

share|improve this answer
Thanks for the edit, was a bit too hasty and added the link because the post was under the character limit. – G_H Aug 24 '11 at 9:58

Try something like:

for(String key : hashmap.keySet()){
    // do something
}
share|improve this answer

There is the keySet method for that.

Collection<String> c = hashmap.keySet();
Iterator<String> itr = c.iterator();
while(itr.hasNext())
{
    System.out.println(itr.next());
}
share|improve this answer

Yes there is. Try keySet method.

share|improve this answer

That is because keys are unique in a map. You can get a Set of keys from your Hashmap via
map.keySet();

share|improve this answer
HashMap has a keySet() method that does what you need:

HashMap<String, Integer> foo = ...

for (String s: foo.keySet())
{
   Integer i = foo.get(s);
   ...
}
share|improve this answer

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