java.lang.Objectjava.util.ResourceBundle
Direct Known Subclasses:
DuplicatedPropertiesResourceBundle, PropertyResourceBundle, ListResourceBundle
String
for example, your program can
load it from the resource bundle that is appropriate for the current user's
locale. In this way, you can write program code that is largely independent
of the user's locale isolating most, if not all, of the locale-specific
information in resource bundles.
This allows you to write programs that can:
Resource bundles belong to families whose members share a common base name, but whose names also have additional components that identify their locales. For example, the base name of a family of resource bundles might be "MyResources". The family should have a default resource bundle which simply has the same name as its family - "MyResources" - and will be used as the bundle of last resort if a specific locale is not supported. The family can then provide as many locale-specific members as needed, for example a German one named "MyResources_de".
Each resource bundle in a family contains the same items, but the items have
been translated for the locale represented by that resource bundle.
For example, both "MyResources" and "MyResources_de" may have a
String
that's used on a button for canceling operations.
In "MyResources" the String
may contain "Cancel" and in
"MyResources_de" it may contain "Abbrechen".
If there are different resources for different countries, you can make specializations: for example, "MyResources_de_CH" contains objects for the German language (de) in Switzerland (CH). If you want to only modify some of the resources in the specialization, you can do so.
When your program needs a locale-specific object, it loads
the ResourceBundle
class using the
getBundle
method:
ResourceBundle myResources = ResourceBundle.getBundle("MyResources", currentLocale);
Resource bundles contain key/value pairs. The keys uniquely
identify a locale-specific object in the bundle. Here's an
example of a ListResourceBundle
that contains
two key/value pairs:
Keys are alwayspublic class MyResources extends ListResourceBundle { protected Object[][] getContents() { return new Object[][] { // LOCALIZE THE SECOND STRING OF EACH ARRAY (e.g., "OK") {"OkKey", "OK"}, {"CancelKey", "Cancel"}, // END OF MATERIAL TO LOCALIZE }; } }
String
s.
In this example, the keys are "OkKey" and "CancelKey".
In the above example, the values
are also String
s--"OK" and "Cancel"--but
they don't have to be. The values can be any type of object.
You retrieve an object from resource bundle using the appropriate
getter method. Because "OkKey" and "CancelKey"
are both strings, you would use getString
to retrieve them:
The getter methods all require the key as an argument and return the object if found. If the object is not found, the getter method throws abutton1 = new Button(myResources.getString("OkKey")); button2 = new Button(myResources.getString("CancelKey"));
MissingResourceException
.
Besides getString
, ResourceBundle
also provides
a method for getting string arrays, getStringArray
,
as well as a generic getObject
method for any other
type of object. When using getObject
, you'll
have to cast the result to the appropriate type. For example:
int[] myIntegers = (int[]) myResources.getObject("intList");
The Java Platform provides two subclasses of ResourceBundle
,
ListResourceBundle
and PropertyResourceBundle
,
that provide a fairly simple way to create resources.
As you saw briefly in a previous example, ListResourceBundle
manages its resource as a list of key/value pairs.
PropertyResourceBundle
uses a properties file to manage
its resources.
If ListResourceBundle
or PropertyResourceBundle
do not suit your needs, you can write your own ResourceBundle
subclass. Your subclasses must override two methods: handleGetObject
and getKeys()
.
getBundle
factory methods that take a ResourceBundle.Control
instance. You can implement your own subclass in order to enable
non-standard resource bundle formats, change the search strategy, or
define caching parameters. Refer to the descriptions of the class and the
getBundle
factory method for details.
getBundle
factory
methods are cached by default, and the factory methods return the same
resource bundle instance multiple times if it has been
cached. getBundle
clients may clear the cache, manage the
lifetime of cached resource bundle instances using time-to-live values,
or specify not to cache resource bundle instances. Refer to the
descriptions of the {@linkplain #getBundle(String, Locale, ClassLoader,
Control) getBundle
factory method}, clearCache , Locale)
ResourceBundle.Control.getTimeToLive , and ResourceBundle.Control.needsReload for details.
ResourceBundle
subclass, MyResources
, that manages two resources (for a larger number of
resources you would probably use a Map
).
Notice that you don't need to supply a value if
a "parent-level" ResourceBundle
handles the same
key with the same value (as for the okKey below).
You do not have to restrict yourself to using a single family of// default (English language, United States) public class MyResources extends ResourceBundle { public Object handleGetObject(String key) { if (key.equals("okKey")) return "Ok"; if (key.equals("cancelKey")) return "Cancel"; return null; } public Enumeration<String> getKeys() { return Collections.enumeration(keySet()); } // Overrides handleKeySet() so that the getKeys() implementation // can rely on the keySet() value. protected Set<String> handleKeySet() { return new HashSet<String>(Arrays.asList("okKey", "cancelKey")); } } // German language public class MyResources_de extends MyResources { public Object handleGetObject(String key) { // don't need okKey, since parent level handles it. if (key.equals("cancelKey")) return "Abbrechen"; return null; } protected Set<String> handleKeySet() { return new HashSet<String>(Arrays.asList("cancelKey")); } }
ResourceBundle
s. For example, you could have a set of bundles for
exception messages, ExceptionResources
(ExceptionResources_fr
, ExceptionResources_de
, ...),
and one for widgets, WidgetResource
(WidgetResources_fr
,
WidgetResources_de
, ...); breaking up the resources however you like.JDK1.1
- Nested Class Summary: | ||
---|---|---|
public static class | ResourceBundle.Control | ResourceBundle.Control defines a set of callback methods
that are invoked by the {@link ResourceBundle#getBundle(String,
Locale, ClassLoader, Control) ResourceBundle.getBundle} factory
methods during the bundle loading process. In other words, a
ResourceBundle.Control collaborates with the factory
methods for loading resource bundles. The default implementation of
the callback methods provides the information necessary for the
factory methods to perform the default behavior.
In addition to the callback methods, the {@link
#toBundleName(String, Locale) toBundleName} and {@link
#toResourceName(String, String) toResourceName} methods are defined
primarily for convenience in implementing the callback
methods. However, the Two factory methods, {@link #getControl(List)} and {@link
#getNoFallbackControl(List)}, provide
The formats returned by the {@link Control#getFormats(String)
getFormats} method and candidate locales returned by the {@link
ResourceBundle.Control#getCandidateLocales(String, Locale)
getCandidateLocales} method must be consistent in all
A Applications can specify Example 1 The following code lets import java.util.*; import static java.util.ResourceBundle.Control.*; ... ResourceBundle bundle = ResourceBundle.getBundle("MyResources", new Locale("fr", "CH"), ResourceBundle.Control.getControl(FORMAT_PROPERTIES));Given the resource bundles in the example in the ResourceBundle.getBundle description, this
ResourceBundle.getBundle call loads
MyResources_fr_CH.properties whose parent is
MyResources_fr.properties whose parent is
MyResources.properties . (MyResources_fr_CH.properties
is not hidden, but MyResources_fr_CH.class is.)
Example 2 The following is an example of loading XML-based bundles using {@link Properties#loadFromXML(java.io.InputStream) Properties.loadFromXML}. ResourceBundle rb = ResourceBundle.getBundle("Messages", new ResourceBundle.Control() { public List<String> getFormats(String baseName) { if (baseName == null) throw new NullPointerException(); return Arrays.asList("xml"); } public ResourceBundle newBundle(String baseName, Locale locale, String format, ClassLoader loader, boolean reload) throws IllegalAccessException, InstantiationException, IOException { if (baseName == null || locale == null || format == null || loader == null) throw new NullPointerException(); ResourceBundle bundle = null; if (format.equals("xml")) { String bundleName = toBundleName(baseName, locale); String resourceName = toResourceName(bundleName, format); InputStream stream = null; if (reload) { URL url = loader.getResource(resourceName); if (url != null) { URLConnection connection = url.openConnection(); if (connection != null) { // Disable caches to get fresh data for // reloading. connection.setUseCaches(false); stream = connection.getInputStream(); } } } else { stream = loader.getResourceAsStream(resourceName); } if (stream != null) { BufferedInputStream bis = new BufferedInputStream(stream); bundle = new XMLResourceBundle(bis); bis.close(); } } return bundle; } }); ... private static class XMLResourceBundle extends ResourceBundle { private Properties props; XMLResourceBundle(InputStream stream) throws IOException { props = new Properties(); props.loadFromXML(stream); } protected Object handleGetObject(String key) { return props.getProperty(key); } public Enumeration<String> getKeys() { ... } } |
Field Summary | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
protected ResourceBundle | parent | The parent bundle of this bundle. The parent bundle is searched by getObject when this bundle does not contain a particular resource. |
Constructor: |
---|
|
Method from java.util.ResourceBundle Summary: |
---|
clearCache, clearCache, containsKey, getBundle, getBundle, getBundle, getBundle, getBundle, getBundle, getKeys, getLocale, getObject, getString, getStringArray, handleGetObject, handleKeySet, keySet, setParent |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from java.util.ResourceBundle Detail: | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||
| ||||||||||||||
key is contained in
this ResourceBundle or its parent bundles. | ||||||||||||||
except that getClassLoader() is run with the security
privileges of ResourceBundle .
See getBundle
for a complete description of the search and instantiation strategy. | ||||||||||||||
getBundle(baseName, Locale.getDefault(), this.getClass().getClassLoader(), control),except that getClassLoader() is run with the security
privileges of ResourceBundle . See getBundle for the
complete description of the resource bundle loading process with a
ResourceBundle.Control . | ||||||||||||||
except that getClassLoader() is run with the security
privileges of ResourceBundle .
See getBundle
for a complete description of the search and instantiation strategy. | ||||||||||||||
getBundle(baseName, targetLocale, this.getClass().getClassLoader(), control),except that getClassLoader() is run with the security
privileges of ResourceBundle . See getBundle for the
complete description of the resource bundle loading process with a
ResourceBundle.Control . | ||||||||||||||
This method behaves the same as calling #getBundle(String, Locale, ClassLoader, Control) passing a default instance of Control . The following describes this behavior.
baseName + "_" + language + "_" + script + "_" + country + "_" + variant baseName + "_" + language + "_" + script + "_" + country baseName + "_" + language + "_" + script baseName + "_" + language + "_" + country + "_" + variant baseName + "_" + language + "_" + country baseName + "_" + language Candidate bundle names where the final component is an empty string are omitted, along with the underscore. For example, if country is an empty string, the second and the fifth candidate bundle names above would be omitted. Also, if script is an empty string, the candidate names including script are omitted. For example, a locale with language "de" and variant "JAVA" will produce candidate names with base name "MyResource" below. MyResource_de__JAVA MyResource_deIn the case that the variant contains one or more underscores ('_'), a sequence of bundle names generated by truncating the last underscore and the part following it is inserted after a candidate bundle name with the original variant. For example, for a locale with language "en", script "Latn, country "US" and variant "WINDOWS_VISTA", and bundle base name "MyResource", the list of candidate bundle names below is generated: MyResource_en_Latn_US_WINDOWS_VISTA MyResource_en_Latn_US_WINDOWS MyResource_en_Latn_US MyResource_en_Latn MyResource_en_US_WINDOWS_VISTA MyResource_en_US_WINDOWS MyResource_en_US MyResource_en Note: For some
This continues until a result resource bundle is instantiated or the list of candidate bundle names is exhausted. If no matching resource bundle is found, the default control's getFallbackLocale method is called, which returns the current default locale. A new sequence of candidate locale names is generated using this locale and and searched again, as above. If still no result bundle is found, the base name alone is looked up. If
this still fails, a Once a result resource bundle has been found, its parent chain is instantiated. If the result bundle already has a parent (perhaps because it was returned from a cache) the chain is complete. Otherwise, Whenever it succeeds, it calls the previously instantiated resource bundle's setParent method with the new resource bundle. This continues until the list of names is exhausted or the current bundle already has a non-null parent. Once the parent chain is complete, the bundle is returned. Note: Note:The The following class and property files are provided: MyResources.class MyResources.properties MyResources_fr.properties MyResources_fr_CH.class MyResources_fr_CH.properties MyResources_en.properties MyResources_es_ES.classThe contents of all files are valid (that is, public non-abstract subclasses of ResourceBundle for the ".class" files,
syntactically correct ".properties" files). The default locale is
Locale("en", "GB") .
Calling
The file MyResources_fr_CH.properties is never used because it is hidden by the MyResources_fr_CH.class. Likewise, MyResources.properties is also hidden by MyResources.class. | ||||||||||||||
getBundle
factory methods with no control argument}, the given
control specifies how to locate and instantiate resource
bundles. Conceptually, the bundle loading process with the given
control is performed in the following steps.
During the resource bundle loading process above, this factory
method looks up the cache before calling the Locale, String, ClassLoader, boolean)
control.newBundle method. If the time-to-live period of the
resource bundle found in the cache has expired, the factory method
calls the control.needsReload
method to determine whether the resource bundle needs to be reloaded.
If reloading is required, the factory method calls
All resource bundles loaded are cached by default. Refer to control.getTimeToLive for details. The following is an example of the bundle loading process with the
default Conditions: First, At this point,
| ||||||||||||||
| ||||||||||||||
| ||||||||||||||
getObject method.
If still not successful, it throws a MissingResourceException. | ||||||||||||||
| ||||||||||||||
| ||||||||||||||
| ||||||||||||||
Set of the keys contained only
in this ResourceBundle .
The default implementation returns a | ||||||||||||||
Set of all keys contained in this
ResourceBundle and its parent bundles. | ||||||||||||||
|