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


Java PropertyResourceBundle getKeys()用法及代碼示例


PropertyResourceBundle類getKeys()方法

  • getKeys() 方法可在java.util包。
  • getKeys() 方法用於返回此 PropertyResourceBundle 及其父項中存在的鍵的枚舉。
  • getKeys() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • getKeys() 方法返回鍵集時不拋出異常。

用法:

    public Enumeration getKeys();

參數:

  • 它不接受任何參數。

返回值:

該方法的返回類型是Enumeration,它獲取此 PropertyResourceBundle 及其超類的現有鍵的枚舉。

例:

// Java program to demonstrate the example 
// of Enumeration getKeys() method of 
//  PropertyResourceBundle

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

public class GetKeyOfPropertyResourceBundle {
 public static void main(String arg[]) throws Exception {
  // Instantiate Properties object
  String str = "10 = C\n" + " 20 =C++\n " + " 30 =Java\n ";
  InputStream is = new StringBufferInputStream(str);

  PropertyResourceBundle prb = new PropertyResourceBundle(is);
  Enumeration en = prb.getKeys();

  for (; en.hasMoreElements();)
   System.out.println(en.nextElement());
 }
}

輸出

30
20
10


相關用法


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