标签:
//获取key值
Enumeration k = lovResults.keys();
while(k.hasMoreElements()){
System.out.println(k.nextElement());
}
//获取VALUE值
Enumeration e = lovResults.elements();
while(e.hasMoreElements()){
System.out.println(e.nextElement());
}
Java 集合系列11之 Hashtable详细介绍(源码解析)和使用示例
标签:
原文地址:http://www.cnblogs.com/huanghongbo/p/5978076.html