Enumeration遍历方法:

    Enumeration attributes = application.getAttributeNames();//这里是application对象,也可以是其他的对象,不同对象的取值方式可能不同

         while(attributes.hasMoreElements())

         {

            out.println(attributes.nextElement()+"  ");

          }

 

如果是向量对象v:

for (Enumeration e = v.elements() ; e.hasMoreElements() ;) {
System.out.println(e.nextElement());

}

hasMoreElements() 是判断是不是还要下一个元素,

nextElement()是取下一个元素。但是如果要遍历,在取值后,应该要跳道下一个位置。但没有看到有说这一点的.也没有看到源码。不明白