ResourceBundle : Java Glossary

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 an 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 resource Bundle with

Learning More

Oracle’s Javadoc on ResourceBundle class : available:
Oracle’s Javadoc on PropertyResourceBundle class : available:
Oracle’s Javadoc on ListResourceBundle class : available:
Oracle’s Javadoc on MessageFormat class : available:
Oracle’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
logo
Please email your , letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email. If you want your message, your name or email kept confidential, not considered for public posting, please explicitly specify that. Unless you state otherwise, I will treat your message as a letter to the editor that I may or may not publish in the feedback section. After that, it will be too late to retract it. If you disagree with something I said, please quote it and cite the web page where you found it, tell me why you think it is wrong, and, if possible, provide some supporting evidence. Threatening to kill me or spouting obscenities has yet to persuade me to change my mind.
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.179.211]
You are visitor number 24,405.