Java.util.ResourceBundle.clearCache()


描述

java.util.ResourceBundle.clearCache()方法去除已经使用调用者的类加载器加载缓存中的所有资源包。

声明

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

public static final void clearCache()

参数

NA

返回值

此方法不返回值。

异常

NA

实例

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

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

      // clear the cache
      System.out.println("Clearing Cache...");
      ResourceBundle.clearCache();
      System.out.println("Cache Cleared.");
   }
}

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

hello = Hello World!

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

Hello World!
Clearing Cache...
Cache Cleared.