当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。