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


Java Java.util.ResourceBundle.containsKey()用法及代码示例



描述

这个java.util.ResourceBundle.containsKey(String key)方法确定给定的键是否包含在此 ResourceBundle 或其父包中。

声明

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

public boolean containsKey(String key)

参数

key− 资源键

返回值

该方法返回true如果给定的键包含在此 ResourceBundle 或其父包中;false除此以外。

异常

NullPointerException- 如果键是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"));
   }
}

假设我们有一个资源文件hello_en_US.properties在您的 CLASSPATH 中可用,具有以下内容。该文件将用作我们示例程序的输入 -

hello = Hello World!

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

Hello World!
false
true

相关用法


注:本文由纯净天空筛选整理自 Java.util.ResourceBundle.containsKey() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。