ResourceBundle is an abstract class which is the superclass of classes which
provide locale specific resources. A bundle contains a number of named
resources, where the names are Strings. A bundle may have a parent bundle,
when a resource is not found in a bundle, the parent bundle is searched for
the resource.
See Also:Properties See Also:PropertyResourceBundle since: 1.1
Inner Class :static class MissingBundle extends ResourceBundle
Finds the named resource bundle for the default locale.
Parameters: bundleName - the name of the resource bundle ResourceBundle exception: MissingResourceException - when the resource bundle cannot be found
Finds the named resource bundle for the specified locale.
Parameters: bundleName - the name of the resource bundle Parameters: locale - the locale ResourceBundle exception: MissingResourceException - when the resource bundle cannot be found
Finds the named resource bundle for the specified locale.
Parameters: bundleName - the name of the resource bundle Parameters: locale - the locale Parameters: loader - the ClassLoader to use ResourceBundle exception: MissingResourceException - when the resource bundle cannot be found
Answers the named resource from this ResourceBundle.
Parameters: key - the name of the resource the resource object exception: MissingResourceException - when the resource is not found
Answers the named resource from this ResourceBundle.
Parameters: key - the name of the resource the resource string exception: MissingResourceException - when the resource is not found
Answers the named resource from this ResourceBundle.
Parameters: key - the name of the resource the resource string array exception: MissingResourceException - when the resource is not found
Answers the named resource from this ResourceBundle, or null if the
resource is not found.
Parameters: key - the name of the resource the resource object
Sets the parent resource bundle of this ResourceBundle. The parent is
searched for resources which are not found in this resource bundle.
Parameters: bundle - the parent resource bundle