Java.util.Properties.stringPropertyNames()


描述

java.util.Properties.stringPropertyNames()如果相同名称的关键尚未找到方法在这个属性列表,其中键及其对应值是字符串,包括默认属性列表中不同的键返回一组键来自主要属性列表。键或键不是String类型的属性将被省略。

声明

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

public Set<String> stringPropertyNames()

参数

NA

返回值

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

异常

NA

实例

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

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");

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

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

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

[Width, Height]