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 ?