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


Java Properties stringPropertyNames()用法及代碼示例


Properties類stringPropertyNames()方法

  • stringPropertyNames() 方法可在java.util包。
  • stringPropertyNames() 方法用於獲取此屬性列表中存在的所有鍵,此處鍵及其所需值是字符串以及唯一鍵存在於默認屬性列表中以在集合中查看。
  • stringPropertyNames() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • stringPropertyNames() 方法在返回屬性名稱時不會拋出異常。

用法:

    public Set stringPropertyNames();

參數:

  • 它不接受任何參數。

返回值:

該方法的返回類型是Set,它返回此屬性列表中存在的鍵集以及默認列表中存在的鍵。

例:

// Java program to demonstrate the example 
// of Set stringPropertyNames()
// method of Properties

import java.io.*;
import java.util.*;

public class StringPropertyNamesOfProperties {
 public static void main(String arg[]) throws Exception {
  // Instantiate Properties object
  Properties prop = new Properties();

  prop.put("10", "C");
  prop.put("20", "C++");
  prop.put("30", "JAVA");
  prop.put("40", "PHP");
  prop.put("50", "SFDC");

  // Get all the properties of
  // this object in a set
  Set set = prop.stringPropertyNames();

  // Display Set View
  System.out.println("prop.stringPropertyNames():" + set);
 }
}

輸出

prop.stringPropertyNames():[50, 40, 30, 20, 10]


相關用法


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