當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.util.ResourceBundle.clearCache()用法及代碼示例



描述

這個java.util.ResourceBundle.clearCache(ClassLoader loader)方法從緩存中刪除所有使用給定類加載器加載的資源包。

聲明

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

public static final void clearCache(ClassLoader loader)

參數

loader- 類加載器

返回值

此方法不返回值。

異常

NullPointerException- 如果裝載機是null

示例

下麵的例子展示了 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 by using system classloader
      ClassLoader cl = ClassLoader.getSystemClassLoader();
      System.out.println("Clearing Cache...");
      ResourceBundle.clearCache(cl);
      System.out.println("Cache Cleared.");
   }
}

假設我們有一個資源文件hello_en_US.properties在您的 CLASSPATH 中可用,具有以下內容。該文件將用作我們示例程序的輸入 -

hello = Hello World!

讓我們編譯並運行上麵的程序,這將產生以下結果 -

Hello World!
Clearing Cache...
Cache Cleared.

相關用法


注:本文由純淨天空篩選整理自 Java.util.ResourceBundle.clearCache() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。