My Blog

My WordPress Blog

My Blog

My WordPress Blog

10. Java Internationalization

ResourceBundle Class

ResourceBundle class is used to store text and objects which are locale sensitive. Generally we use property files to store locale specific text and then represent them using ResourceBundle object. Following are the steps to use locale specific properties file in a java based application. Step 1: Create Properties Files Suppose we need properties file […]

Locale Class

A Locale class object represents a specific geographical/political/cultural region. Any operation requiring a Locale to perform its task is called locale-sensitive operation and uses the Locale to master information relative to the user. For example, displaying a number is a locale-sensitive operation. The number should be formatted as per the customs and conventions of the […]

Overview

Internationalization Internationalization or I18N refers to the capability of an Application to be able to serve users in multiple and different languages. Java has in-built support for Internationalization. Java also provides formatting of numbers, currencies and adjustment of date and time accordingly. Java Internationalization helps to make a java application handle different languages, number formats, […]

Scroll to top