ResourceBundle : Java Glossary
home R words local find no local find frame, full screen Google search web for topic jump to footer translate with Babelfish 2008-03-18 by Roedy Green ©1996-2008 Canadian Mind Products
Go to : punctuation 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z (all)
ResourceBundle
A flexible but crude technique for internationalisation. You create multiple classes, one for each locale, and the ResourceBundle.getBundle method selects the best fit based on country, language and platform. PropertyResourceBundles get their Strings from a Properties file. A ListResourceBundle is an abstract class. You must extend it with a getContents method that returns a array of of String pairs — the String used in the program and the corresponding String used for that locale. You never actually instantiate a PropertyResourceBundle yourself. getBundle automatically searches for *.properties files.

Note that you give just base name to getBundle. The _cc.properties will automatically be appended. Unlike other resources, the package name is not automatically prepended.

The ResourceBundle properties file must be encoded with ISO-8859-1, not UTF-8. The fancy characters must be encoded with \uxxxx form. You can compose the file in some national encoding then use native2ascii.exe. Unfortunately, the properties file is then no longer readable by humans since all the interesting characters are \uxxxx encoded. Here is what the corresponding *.properties file looks like.

Here is a a resource Bundle with French strings

Learning More

Sun’s Javadoc on the ResourceBundle class : available:
Sun’s Javadoc on the PropertyResourceBundle class : available:
Sun’s Javadoc on the ListResourceBundle class : available:
Sun’s Javadoc on the MessageFormat class : available:
Sun’s Javadoc on the Locale class : available:

CMP_homejump to top
CMP logo
feedback Please email your feedback for publication, errors, omissions, broken/redirected link reports
and suggestions to improve this page to Roedy Green : feedback email
made with CSS
HTML Checked!
ICRA ratings logo
mindprod.com IP:[65.110.21.43]
Your face IP:[38.103.63.16] The information on this page is for non-military use only.
You are visitor number 13,860. Military use includes use by defence contractors.
You can get a fresh copy of this page from: or possibly from your local J: drive (Java virtual drive/Mindprod website mirror)
http://mindprod.com/jgloss/resourcebundle.html J:\mindprod\jgloss\resourcebundle.html