欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java 中遍历取值异常(Hashtable Enumerator)解决办法

程序员文章站 2024-02-15 20:04:52
java 中遍历取值异常(hashtable enumerator)解决办法 用迭代器取值时抛出的异常:java.util.nosuchelementexception:...

java 中遍历取值异常(hashtable enumerator)解决办法

用迭代器取值时抛出的异常:java.util.nosuchelementexception: hashtable enumerator 

示例代码

//使用迭代器遍历 
      iterator<string> it = tableproper.stringpropertynames().iterator();       
      sqlmap = new hashmap<string,string>(); 
      while(it.hasnext()){ 
        sqlmap.put(it.next(), tableproper.getproperty(it.next())); 
      } 

    这是一个枚举异常,是因为在还没来得及执行it.next()时就开始引用它。我们可以用如下方式解决此问题:

//使用迭代器遍历 
      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 遍历取值异常的处理办法,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!