Java Tutorial/I18N/Applications

Материал из Java эксперт
Перейти к: навигация, поиск

Internationalizing Applications

Internationalizing and localizing your applications require you to

  1. Isolating textual components into properties files
  2. Be able to select and reading the correct properties file
  1. Isolating Textual Components into Properties Files
  2. Stores the textual elements in a separate properties file for each locale.
  3. Each file contains key/value pairs.
  4. Each key uniquely identifies a locale-specific object.
  5. Keys are always strings, and values can be strings or any other type of object.

For example, to support American English, German, and Chinese you will have three properties files, all of which have the same keys. The following is the English version of the properties file.



   <source lang="java">

greetings = Hello farewell = Goodbye</source>