Java Properties propertyNames()方法

java.util.Properties.propertyNames() 返回属性列表中所有键的枚举。

1 语法

public Enumeration<?> propertyNames()

2 参数

3 返回值

返回属性列表中所有键的枚举。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Properties.propertyNames()方法的例子
 */
import java.util.*;

public class Demo {
    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

热门文章

优秀文章