java 中遍历取值异常(Hashtable Enumerator)解决办法
用迭代器取值时抛出的异常:java.util.NoSuchElementException: Hashtable Enumerator
示例代码
1
2
3
4
5
6
|
//使用迭代器遍历
Iterator<String> it = tableProper.stringPropertyNames().iterator();
sqlMap = new HashMap<String,String>();
while (it.hasNext()){
sqlMap.put(it.next(), tableProper.getProperty(it.next()));
}
|
这是一个枚举异常,是因为在还没来得及执行it.next()时就开始引用它。我们可以用如下方式解决此问题:
1
2
3
4
5
6
7
8
|
//使用迭代器遍历
Iterator<String> it = tableProper.stringPropertyNames().iterator();
sqlMap = new HashMap<String,String>();
String key;
while (it.hasNext()){
key = it.next();
sqlMap.put(key, tableProper.getProperty(key));
}
|
以上就是java 遍历取值异常的处理办法,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://jsonliangyoujun.iteye.com/blog/2360983