What is the easiest way to iterate over all the key/value pairs of a java.util.Map in Java 5 and higher?

link|improve this question

1  
Reading the documentation is always the easiest way to get things done. – Bombe Feb 25 '09 at 11:41
feedback

1 Answer

up vote 20 down vote accepted

Assuming K is your key type and V is your value type:

for (Map.Entry<K,V> entry : map.entrySet()) {
  K key = entry.getKey();
  V value = entry.getValue();
  // do stuff
}
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.