Java Properties stringPropertyNames()方法

java.util.Properties.stringPropertyNames() 从属性列表中返回一组键,其中键及其对应的值为字符串。

1 语法

public Set<String> stringPropertyNames()

2 参数

3 返回值

在此属性列表中返回一组键,其中键及其对应的值为字符串,包括默认属性列表中的键。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Properties.stringPropertyNames() 方法的例子
 */
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");

        // save the Property names in the set
        Set<String> set = prop.stringPropertyNames();

        // print the set
        System.out.println("" + set);
    }
}

输出结果为:

[Width, Height]

热门文章

优秀文章