Mega Code Archive

 
Categories / Java Tutorial / Collections
 

To get the set of all the values in the hash map

import java.util.Collection; import java.util.HashMap; import java.util.Iterator; import java.util.Map; public class MainClass {   public static void main(String[] a) {     Map map = new HashMap();     map.put("key1", "value1");     map.put("key2", "value2");     map.put("key3", "value3");     Collection set = map.values();     Iterator iter = set.iterator();     while (iter.hasNext()) {       System.out.println(iter.next());     }   } } value1 value3 value2