Sử dụng Enumeration để hiển thị HashTable trong Java



Miêu tả vấn đề

Cách sử dụng Enumeration để hiển thị nội dung của HashTable trong Java?

Giải pháp

Ví dụ sau minh họa cách sử dụng các phương thức hasMoreElements và nestElement của lớp Enumeration để hiển thị nội dung của HashTable trong Java.

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());
      }
   }
}

Kết quả

Code trên sẽ cho kết quả sau:

Three
Two
One

collection_trong_java.jsp