Wednesday 21 January 2015

Java : Collection Framework : HashMap (Get Keys and Values)


Click here to watch in Youtube :
https://www.youtube.com/watch?v=qA068mes53Q&list=UUhwKlOVR041tngjerWxVccw

HashMapExample.java
import java.util.HashMap;
import java.util.Set;

/*
 * Example of keySet() method.
 */
public class HashMapExample
{
    public static void main( String[] args )
    {

        HashMap<Integer, String> hashMap = new HashMap<Integer, String>();

        hashMap.put(1, "Apple");
        hashMap.put(2, "Ball");
        hashMap.put(3, "Cat");

        System.out.println("hashMap : " + hashMap + "\n");

        /*
         * Returns a Set view of the keys contained in this map. The set is
         * backed by the map, so changes to the map are reflected in the set,
         * and vice-versa. 
         * 
         * If the map is modified while an iteration over the
         * set is in progress (except through the iterator's own remove
         * operation), the results of the iteration are undefined. The set
         * supports element removal, which removes the corresponding mapping
         * from the map, via the Iterator.remove, Set.remove, removeAll,
         * retainAll, and clear operations. It does not support the add or
         * addAll operations.
         */
        Set<Integer> set = hashMap.keySet();

        System.out.println("set : " + set + "\n");
        
        System.out.println("-----------------------");
        System.out.println("Key" +" | " + "value");
        System.out.println("-----------------------");

        for( Integer key : set )
        {
            String value = hashMap.get(key);
            System.out.println(key + "   |  " + value);
            
        }

    }
}
Output
hashMap : {1=Apple, 2=Ball, 3=Cat}

set : [1, 2, 3]

-----------------------
Key | value
-----------------------
1   |  Apple
2   |  Ball
3   |  Cat
To Download HashMapDemoKeysAndValues Project Click the below link
https://sites.google.com/site/javaee4321/java-collections/HashMapDemoKeysAndValues.zip?attredirects=0&d=1

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • No comments:

    Post a Comment