ResourceBundle : Java Glossary

go to home page R words local find full screen, hide local find menu Google search web for more information on this topic jump to foot of page translate this page with Babelfish 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) ©1996-2009 2008-03-18 Roedy Green, Canadian Mind Products
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 ResourceBundle class : available:
Sun’s Javadoc on PropertyResourceBundle class : available:
Sun’s Javadoc on ListResourceBundle class : available:
Sun’s Javadoc on MessageFormat class : available:
Sun’s Javadoc on Locale class : available:

CMP homejump to top You can get the freshest copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/resourcebundle.html J:\mindprod\jgloss\resourcebundle.html
CMP logofeedback Please email your feedback for publication, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.191.105]
You are visitor number 19,110.