java4all@1986 java. Powered by Blogger.

How to create HashTable from HashMap?

>> Monday, May 30, 2011




import java.util.Enumeration;
import java.util.HashMap;
import java.util.Hashtable;

public class Main {
  public static void main(String[] args) {

    HashMap hMap = new HashMap();

    hMap.put("1", "One");
    hMap.put("2", "Two");
    hMap.put("3", "Three");

    Hashtable ht = new Hashtable();
    ht.put("1", "REPLACED !!");
    ht.put("4", "Four");

    Enumeration e = ht.elements();
    while (e.hasMoreElements()){
      System.out.println(e.nextElement());
         }      

    ht.putAll(hMap);
    e = ht.elements();
System.out.println("in hashtable");
    while (e.hasMoreElements()){
    
     System.out.println(e.nextElement());
    }      
    
  }
}
 
OUTPUT:
Four
REPLACED !!
in hashtable
Four
Three
Two
One

0 comments:

Post a Comment

FaceBook Login

HTML/JAVASCRIPT

HTML/JAVASCRIPT

HTML/JAVASCRIPT

HTML/JAVASCRIPT

Total Pageviews

STATCOUNTER

  © Blogger template Simple n' Sweet by Ourblogtemplates.com 2009

Back to TOP