Java ResourceBundle keySet() 方法



描述

java ResourceBundle keySet() 方法返回此 ResourceBundle 及其父捆绑包中包含的所有键的集合。

声明

以下是 java.util.ResourceBundle.keySet() 方法的声明

public Set<String> keySet()

参数

返回值

此方法返回此 ResourceBundle 及其父捆绑包中包含的所有键的集合。

异常

从美国区域设置的属性文件中获取键集

以下示例演示了 Java ResourceBundle keySet() 方法的使用,用于打印属性文件中存在的键集。我们为相应的 hello_en_US.properties 文件创建了一个美国区域设置的资源包。然后,我们打印分配给键 hello 的文本。然后,使用 keySet() 方法检索键集并打印。

package com.tutorialspoint;

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
      System.out.println(bundle.keySet());
   }
}

输出

假设在您的 CLASSPATH 中有一个名为 hello_en_US.properties 的资源文件,其内容如下。此文件将用作我们示例程序的输入:

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

让我们编译并运行上述程序,这将产生以下结果:

Hello World!
[hello, bye, morning]

从法国区域设置的属性文件中获取键集

以下示例演示了 Java ResourceBundle keySet() 方法的使用,用于打印属性文件中存在的键集。我们为相应的 hello_fr_FR.properties 文件创建了一个法国区域设置的资源包。然后,我们打印分配给键 hello 的文本。然后,使用 keySet() 方法检索键集并打印。

package com.tutorialspoint;

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.FRANCE);

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

      // get the keys
      System.out.println(bundle.keySet());
   }
}

输出

假设在您的 CLASSPATH 中有一个名为 hello_fr_FR.properties 的资源文件,其内容如下。此文件将用作我们示例程序的输入:

hello = Bonjour le monde!
bye = Au revoir le monde!
morning = Bonjour le monde!

让我们编译并运行上述程序,这将产生以下结果:

Bonjour le monde!
[hello, bye, morning]

从德国区域设置的属性文件中获取键集

以下示例演示了 Java ResourceBundle keySet() 方法的使用,用于打印属性文件中存在的键集。我们为相应的 hello_de_DE.properties 文件创建了一个德国区域设置的资源包。然后,我们打印分配给键 hello 的文本。然后,使用 keySet() 方法检索键集并打印。

package com.tutorialspoint;

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.GERMAN);

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

      // get the keys
      System.out.println(bundle.keySet());
   }
}

输出

假设在您的 CLASSPATH 中有一个名为 hello_de_DE.properties 的资源文件,其内容如下。此文件将用作我们示例程序的输入:

hello = Hallo Welt!
bye = Auf Wiedersehen Welt!
morning = Guten Morgen Welt!

让我们编译并运行上述程序,这将产生以下结果:

Hello World!
[hello, bye, morning]
java_util_resourcebundle.htm
广告