Enumeration遍历方法:

    Enumeration attributes = application.getAttributeNames();

         while(attributes.hasMoreElements())

         {

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

     }

代码示例:

我不是很理解这个部分,nextElement()方法难道是取出当前位置的值男人自动跳转到下一个位置?没有找到代码。