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


Java Java.util.ResourceBundle.getKeys()用法及代碼示例



描述

這個java.util.ResourceBundle.getKeys()方法返回鍵的枚舉。

聲明

以下是聲明java.util.ResourceBundle.getKeys()方法

public abstract Enumeration<String> getKeys()

參數

NA

返回值

此方法返回包含在此 ResourceBundle 及其父包中的鍵的枚舉。

異常

NA

示例

下麵的例子展示了 java.util.ResourceBundle.getKeys() 方法的用法。

package com.tutorialspoint;

import java.util.Enumeration;
import java.util.Locale;
import java.util.ResourceBundle;

public class ResourceBundleDemo {
   public static void main(String[] args) {

      // create a new ResourceBundle with specified locale
      ResourceBundle bundle = ResourceBundle.getBundle("hello", Locale.US);

      // print the text assigned to key "hello"
      System.out.println("" + bundle.getString("hello"));

      // get the keys
      Enumeration<String> enumeration = bundle.getKeys();

      // print all the keys
      while (enumeration.hasMoreElements()) {
         System.out.println("" + enumeration.nextElement());
      }
   }
}

假設我們有一個資源文件hello_en_US.properties在您的 CLASSPATH 中可用,具有以下內容。這個文件將用作我們示例程序的輸入——

hello = Hello World!
bye = Goodbye World!
morning = Good Morning World!

讓我們編譯並運行上麵的程序,這將產生以下結果——

Hello World!
hello
bye
morning

相關用法


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