Map key
In this chapter you will learn:
Map key set
Other than getting key value pair from Map.Entry
, we can also
get the all key values as a set.
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
/* j a va2s .c o m*/
public class MainClass {
public static void main(String[] argv) {
Map map = new HashMap();
map.put("Adobe", "Mountain View, CA");
map.put("IBM", "White Plains, NY");
map.put("Learning Tree", "Los Angeles, CA");
Iterator k = map.keySet().iterator();
while (k.hasNext()) {
String key = (String) k.next();
System.out.println("Key " + key + "; Value " + (String) map.get(key));
}
}
}
The output:
Next chapter...
What you will learn in the next chapter:
Home » Java Tutorial » Collections