A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/javaexamples/collection_iterate.htm below:

How to iterate through elements of HashMap in Java

How to iterate through elements of HashMap in Java Problem Description

How to iterate through elements of HashMap?

Solution

Following example uses iterator Method of Collection class to iterate through the HashMap.

import java.util.*;

public class Main {
   public static void main(String[] args) {
      HashMap< String, String> hMap = new HashMap< String, String>();
      hMap.put("1", "1st");
      hMap.put("2", "2nd");
      hMap.put("3", "3rd");
      Collection cl = hMap.values();
      Iterator itr = cl.iterator();
      
      while (itr.hasNext()) {
         System.out.println(itr.next());
      }
   }
}
Result

The above code sample will produce the following result.

1st
2nd
3rd

java_collections.htm


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4