java.util.Properties.propertyNames()方法实例
java.util.Properties.propertyNames() 方法返回如果未发现从主属性列表中名称相同的一个键属性列表中所有键,包括默认属性列表中不同的键的枚举。
声明
以下是java.util.Properties.propertyNames()方法的声明
public Enumeration<?> propertyNames()
参数
-
NA
返回值
此方法返回属性列表中所有键,包括默认属性列表中的键的枚举。
异常
-
ClassCastException --如果在此属性列表中的任何键不是字符串。
例子
下面的示例演示java.util.Properties.propertyNames()方法的用法。
package com.yiibai; 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