Java ResourceBundle .clearCache (ClassLoader loader)
Syntax
ResourceBundle.clearCache(ClassLoader loader) has the following syntax.
public static final void clearCache(ClassLoader loader)
Example
In the following code shows how to use ResourceBundle.clearCache(ClassLoader loader) method.
import java.util.Locale;
import java.util.ResourceBundle;
/*from w w w .j a va 2 s .c o m*/
public class Main {
public static void main(String[] args) {
ResourceBundle bundle = ResourceBundle.getBundle("hello", Locale.US);
System.out.println(bundle.getString("hello"));
ClassLoader cl = ClassLoader.getSystemClassLoader();
ResourceBundle.clearCache(cl);
}
}
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »