當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java 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]

相關用法


注:本文由純淨天空篩選整理自 Java.util.Properties.stringPropertyNames() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。