VOOZH about

URL: https://www.javacodegeeks.com/2012/02/customized-internationalization-i18n-in.html

⇱ Customized Internationalization (i18n) in Java - Java Code Geeks


Internationalization (i18n) is very important in our software projects. It brings mainly these benefits:
  • Externalizing UI strings into external files other than code files and so easy-to-manage UI content.
  • Supporting multiple languages.
In this post, a brief practical example of i18n will be given for Eclipse and Java projects, including customizing i18n mechanism to have more maintainable and encapsulated approach.

  • First, we must have some classes which includes string values shown on user interface:
πŸ‘ Image
An example UI class
  • Then we must have an instance of an i18n utility class. This is generally one of the two in Java:
    • java.util.ResourceBundle (doesn’t need spring dependency)
πŸ‘ Image
ResourceBundle initialization
    • org.springframework.context.support.ResourceBundleMessageSource (has multiple word externalization capability (which will be told later)).
πŸ‘ Image
ResourceBundleMessageSource initialization
We’ll use ResourceBundleMessageSource instance in this tutorial because of its extended capabilities.

  • Then right click on the class and choose Source –> Externalize Strings. A window as below will be shown. Enter keys for strings into the right column. Keys will be started with class name as default. Keys must be unique on the system, so a predefined pattern should be applied (e.g. <class_name>.<type_id>.<description>)
πŸ‘ Image
Eclipse string externalization window
  • Click Next–> Finish and your strings will be changed as follows. And also Messages class and externalizer properties file will be created automatically (auto-comments on the right are markers for eclipse which means
    β€œexternalized”):
πŸ‘ Image
Class with externalized strings
πŸ‘ Image
Auto-created i18n utility and property classes
  • Now externalization is complete. But we want i18n, and we must support multiple languages. For this, define another properties file with location post-tag (e.g. β€œEN”, β€œFR”, β€œTR”, …), copy keys and fill values with new language and set locale of resource bundle in a proper place/action of your application (e.g. on settings window or login page):
πŸ‘ Image
Multiple property files for each language
πŸ‘ Image
Messages_tr_TR.properties file content
πŸ‘ Image
Setting new locale to the resource bundle
  • As the last step, we want to encapsulate i18n utility class and also want to use a more  capable i18n utility (e.g.
    ResourceBundleMessageSource). For this, define a class as below:
πŸ‘ Image
Customized and encapsulated message source (i18n utility) class
  • Finally, change β€œMessages.getString” statements into your new instance:
πŸ‘ Image
Class with externalized strings (with customized i18n utility class)
  • You can also externalize parameterized strings using your class. Its usage will be as follows:
πŸ‘ Image
Getting a parameterized string from i18n utility
πŸ‘ Image
Defining a parameterized string in property file

Reference: Customized Internationalization (i18n) in Java – Step by Step from our JCG partner Cagdas Basaraner at the CodeBuild blog.

Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy

Thank you!

We will contact you soon.

πŸ‘ Photo of Cagdas Basaraner
Cagdas Basaraner
February 29th, 2012Last Updated: December 29th, 2012
0 189 2 minutes read

Cagdas Basaraner

Cagdas Basaraner is a software engineer graduated from Hacettepe University Computer Engineering department (Turkey), having 5 years professional experience. He is working on JEE web technologies, and also a former developer of information systems using Microsoft technologies and Command & Control (C4I) systems with Java technologies.
Subscribe

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Back to top button
Close
wpDiscuz