Monday, January 19, 2015

Enumeration to display HashTable in java pgm



Use Enumeration to display HashTable

import java.util.Enumeration;
import java.util.Hashtable;
public class Main
{
 public static void main(String[] args)
  {
      Hashtable ht = new Hashtable();
      ht.put("1", "One");
      ht.put("2", "Two");
      ht.put("3", "Three");
      Enumeration e = ht.elements();
      while(e.hasMoreElements())
      {
         System.out.println(e.nextElement());
      }
   }
}

No comments:

Post a Comment