vote up 1 vote down star

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

flag

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

1 Answer

vote up 18 vote down check

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

Your Answer

Get an OpenID
or

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