在Java编程中,如何从Hashtable
设置Keys的视图?
以下示例使用Enumeration
类的keys()
方法来获取HashTable
的键。
package com.yiibai;
import java.util.Enumeration;
import java.util.Hashtable;
public class KeysFromHashTable {
public static void main(String[] args) {
Hashtable ht = new Hashtable();
ht.put("1", "One");
ht.put("2", "Two");
ht.put("3", "Three");
ht.put("4", "Four");
ht.put("5", "Five");
Enumeration e = ht.keys();
while (e.hasMoreElements()) {
System.out.println(e.nextElement());
}
}
}
上述代码示例将产生以下结果 -
5
4
3
2
1