How to Iterate Over Keys in HashMap in Java

104 33
    • 1). Initialize your map as necessary (if you are already working with a map, you can skip this step):

      Map<String, String> map = new HashMap<String, String>();

      map.put("Hello", "World");

      map.put("Java", "Is Fun");

      map.put("Programming", "Rules");

    • 2). Get the key set from your map:

      Set<String> keys = map.keySet();

    • 3). Since the Set interface extends both the Collection and Iterable interfaces, you can work with it just as you would either of those:

      for (final String key: keys) {

      System.out.println("Key: " + key);

      }

      Your output should be similar to this:

      Key: Programming

      Key: Java

      Key: Hello

Subscribe to our newsletter
Sign up here to get the latest news, updates and special offers delivered directly to your inbox.
You can unsubscribe at any time

Leave A Reply

Your email address will not be published.