Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have an object implementing the Map interface in Java and I wish to iterate over every pair contained within it, what is the most efficient way of going through the map?

Will the ordering of elements depend on the specific map implementation that I have for the interface?

share|improve this question
@Pureferret Not sure what you expect from the bounty - The most upvoted and accepted answer does use generics and shows the right way to do it... – assylias Oct 8 '12 at 9:47
3  
@assylias yeah I've made a mistake. I didn't read these answers closely enough. I'm used to people pairing iterators with generics, so when I didn't see one I assumed the later was missing also. – Pureferret Oct 8 '12 at 10:16

12 Answers

up vote 510 down vote accepted
for (Map.Entry<String, String> entry : map.entrySet())
{
    System.out.println(entry.getKey() + "/" + entry.getValue());
}
share|improve this answer
7  
I think you should remove the 'Map.' before 'Map.Entry' so the for becomes "for (Entry<String, String> entry : map.entrySet())" – Roalt Mar 22 '10 at 10:22
10  
If you do that, then it won't work as Entry is a nested Class in Map. java.sun.com/javase/6/docs/api/java/util/Map.html – ScArcher2 Mar 22 '10 at 13:30
46  
you can write the import as "import java.util.Map.Entry;" and it will work. – jjujuma Apr 30 '10 at 10:34
2  
@jjujuma cool that's good to know! – ScArcher2 Apr 30 '10 at 13:44
2  
@Pureferret The only reason you might want to use an iterator is if you need to call its remove method. If that is the case, this other answer shows you how to do it. Otherwise, the enhanced loop as shown in the answer above is the way to go. – assylias Oct 8 '12 at 10:34
show 1 more comment

Yes, the order depends on the specific Map implementation.

@ScArcher2 has the more elegant Java 1.5 syntax. In 1.4, I would do something like this:

Iterator entries = myMap.entrySet().iterator();
while (entries.hasNext()) {
  Entry thisEntry = (Entry) entries.next();
  Object key = thisEntry.getKey();
  Object value = thisEntry.getValue();
  // ...
}
share|improve this answer
12  
Prefer for-loop than while.. for(Iterator entries = myMap.entrySet().iterator(); entries.hasNext(); ) {...} With this syntax the 'entries' scope is reduced to the for loop only. – HanuAthena Oct 20 '09 at 13:20
@HanuAthena for-loops are great as long as you aren't modifying the map (Collection). By using while, you don't run the risk of ConcurrentModificationException's – jpredham Jan 9 '12 at 23:17
1  
@jpredham You are right that using the for construct as for (Entry e : myMap.entrySet) will not allow you to modify the collection, but the example as @HanuAthena mentioned it should work, since it gives you the Iterator in scope. (Unless I'm missing something...) – pkaeding Jan 10 '12 at 15:42

This is a two part question:

How to iterate over the entries of a Map - @ScArcher2 has answered that perfectly.

What is the order of iteration - if you are just using Map, then strictly speaking, there are no ordering guarantees. So you shouldn't really rely on the ordering given by any implementation. However, the SortedMap interface extends Map and provides exactly what you are looking for - implementations will aways give a consistent sort order.

NavigableMap is another useful extension - this is a SortedMap with additional methods for finding entries by their ordered position in the key set. So potentially this can remove the need for iterating in the first place - you might be able to find the specific entry you are after using the higherEntry, lowerEntry, ceilingEntry, or floorEntry methods. The descendingMap method even gives you an explicit method of reversing the traversal order.

share|improve this answer
1  
+1 for mentioning NavigableMap, news to me – Jason S Aug 18 '09 at 17:50

Typical code for iterating over a map is:

Map<String,Thing> map = ...;
for (Map.Entry<String,Thing> entry : map.entrySet()) {
    String key = entry.getKey();
    Thing thing = entry.getValue();
    ...
}

HashMap is the canonical map implementation and doesn't make guarantees (or though it should not change order if no mutating operation are performed on it). SorterMap will return entries on however the map sorts the keys. LinkedHashMap will either return entries in insertion-order or access-order depending upon how it has been constructed. EnumMap returns entries in natural order of keys.

Note, IdentityHashMap entrySet iterator currently has a peculiar implementation which returns the same Map.Entry instance for every item in the entrySet! However, every time a new the iterator advances the Map.Entry is updated.

share|improve this answer
1  
EnumMap also has this peculiar behaviour along with IdentityHashMap – Premraj Mar 10 '11 at 15:41

FYI, you can also use map.keySet() and map.values() if you're only interested in keys/values of the map and not the other.

share|improve this answer

Example of using iterator and generics:

Iterator<Map.Entry<String, String>> entries = myMap.entrySet().iterator();
while (entries.hasNext()) {
  Map.Entry<String, String> entry = entries.next();
  String key = entry.getKey();
  String value = entry.getValue();
  // ...
}
share|improve this answer
You should put Iterator in a for loop to limit its scope. – Steve Kuo Feb 17 '12 at 20:32
+1 for using generics – Pureferret Oct 5 '12 at 15:24

The correct way to do this is to use the accepted answer as it is the most efficient. I find the following code looks a bit cleaner.

for (String key: map.keySet()) {
   System.out.println(key + "/" + map.get(key));
}
share|improve this answer
8  
This is not the best approach, it's much more efficient to use the entrySet(). Findbugs will flag this code (see findbugs.sourceforge.net/…) – Jeff Olson Nov 6 '09 at 20:46
1  
@JeffOlson meh, not really. map lookup is O(1) so both loops behave the same way. admittedly, it will be slightly slower in a micro benchmark but i sometimes do this as well because i hate writing the type arguments over and over again. Also this will quite likely never be your performance bottleneck, so go for it if it makes the code more readable. – kritzikratzi Oct 8 '12 at 13:25
@kritzikratzi but with the entrySet() approach, you're doing one lookup for each element, whereas with the keySet()/get() approach, you're doing two lookups for each element. So in theory (haven't tested it), it is O(1) vs. 2 * O(1). Or twice as long. Right? – Jeff Olson Oct 8 '12 at 17:34
sorry, wrong :) – kritzikratzi Oct 8 '12 at 23:23
1  
more in detail: O(1) = 2*O(1) is pretty much the definition of the big O notation. you're right in that it runs a bit slower, but in terms of complexity they're the same. – kritzikratzi Oct 8 '12 at 23:26
show 4 more comments

try this with java 1.4

 for( Iterator entries = myMap.entrySet().iterator(); entries.hasNext();){

   Entry entry = (Entry) entries.next();

    System.out.println(entry.getKey() + "/" + entry.getValue());

    //...


 }
share|improve this answer
you may wish to format this code correctly! Be a good citizen – Henley Chiu Sep 27 '11 at 18:39
thank you for formatting this. may u have good karma – Henley Chiu Aug 8 '12 at 19:56
public class abcd{
        public static void main(String[] args)
    {
       Map<Integer, String> testMap = new HashMap<Integer, String>();
        testMap.put(10, "a");
        testMap.put(20, "b");
        testMap.put(30, "c");
        testMap.put(40, "d");
        for (Integer key:testMap.keySet()) {
            String value=testMap.get(key);
            System.out.println(value);
        }
    }
}

OR

public class abcd {
    public static void main(String[] args)
    {
       Map<Integer, String> testMap = new HashMap<Integer, String>();
        testMap.put(10, "a");
        testMap.put(20, "b");
        testMap.put(30, "c");
        testMap.put(40, "d");
        for (Entry<Integer, String> entry : testMap.entrySet()) {
            Integer key=entry.getKey();
            String value=entry.getValue();
        }
    }
}
share|improve this answer

In GS Collections, you would use the forEachKeyValue method on the MapIterable interface, which is inherited by the MutableMap and ImmutableMap interfaces and their implementations.

final MutableBag<String> result = Bags.mutable.of();
MutableMap<Integer, String> map = Maps.mutable.of(1, "One", 2, "Two", 3, "Three");
map.forEachKeyValue(new Procedure2<Integer, String>()
{
    public void value(Integer key, String value)
    {
        result.add(key + value);
    }
});
Assert.assertEquals(Bags.mutable.of("1One", "2Two", "3Three"), result);

When Lambdas arrive in Java 8, you will be able to write the code as follows:

MutableBag<String> result = Bags.mutable.of();
MutableMap<Integer, String> map = Maps.mutable.of(1, "One", 2, "Two", 3, "Three");
map.forEachKeyValue((key, value) -> { result.add(key + value);});
Assert.assertEquals(Bags.mutable.of("1One", "2Two", "3Three"), result);

Note: I am a developer on GS Collections.

share|improve this answer

In theory, the most efficient way will depend on which implementation of Map. The official way to do this is to call map.entrySet(), which returns a set of Map.Entry, each of which contains a key and a value (entry.getKey() and entry.getValue()).

In an idiosyncratic implementation, it might make some difference whether you use map.keySet(), map.entrySet() or something else. But I can't think of a reason why anyone would write it like that. Most likely it makes no difference to performance what you do.

And yes, the order will depend on the implementation - as well as (possibly) the order of insertion and other hard-to-control factors.

[edit] I wrote valueSet() originally but of course entrySet() is actually the answer.

share|improve this answer

Yes, as many people agreed this is the best way to iterate over MAP.

But there are chances to throw nullpointerexception if map is null.Don't forget to put null .check

                                                  | 
                                                  |  
                                          - - - - 
                                        |
                                        |          
 for (Map.Entry<String, Object> entry : map.entrySet()) {
    String key = entry.getKey();
    Object value = entry.getValue();

}
share|improve this answer

protected by Flexo Apr 10 at 6:54

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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