Java.util.Properties.propertyNames()


描述

该java.util.Properties.propertyNames()方法,如果同一个名称的键尚未在主属性列表中找到返回属性列表中所有键,包括默认属性列表中不同的键的枚举。

声明

以下是java.util.Properties.propertyNames()方法的声明

public Enumeration<?> propertyNames()

参数

NA

返回值

此方法返回此属性列表中所有键的枚举,包括默认属性列表中的键。

异常

ClassCastException - 如果此属性列表中的任何键不是字符串。

实例

以下示例显示了java.util.Properties.propertyNames()方法的用法。

package com.tutorialspoint;

import java.util.*;

public class PropertiesDemo {
   public static void main(String[] args) {
      Properties prop = new Properties();

      // add some properties
      prop.put("Height", "200");
      prop.put("Width", "15");

      // assign the property names in a enumaration
      Enumeration<?> enumeration = prop.propertyNames();

      // print the enumaration elements
      System.out.println("" + enumeration.nextElement());
      System.out.println("" + enumeration.nextElement());
   }
}

让我们编译并运行上面的程序,这将产生以下结果

Width
Height