Java.util.ResourceBundle.containsKey()


描述

所述java.util.ResourceBundle.containsKey(String key)方法确定该给定键是否被包含在此ResourceBundle或其父束。

声明

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

public boolean containsKey(String key)

参数

key - 资源键

返回值

如果给定的密钥包含在此ResourceBundle或其父包中,则此方法返回true ; 否则是假的。

异常

NullPointerException - 如果key为null

实例

以下示例显示了java.util.ResourceBundle.containsKey()方法的用法。

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"));

      // check if the bundle contains "bye" key
      System.out.println("" + bundle.containsKey("bye"));

      // check if the bundle contains "hello" key
      System.out.println("" + bundle.containsKey("hello"));
   }
}

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

hello = Hello World!

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

Hello World!
false
true