基本、毎日少しずつ記録します.ResourceBundleの使用

1305 ワード

I18NSample.java

import java.util.*;

public class I18NSample {

   static public void main(String[] args) {

      String language;
      String country;

      if (args.length != 2) {
          language = new String("en");
          country = new String("US");
      } else {
          language = new String(args[0]);
          country = new String(args[1]);
      }

      Locale currentLocale;
      ResourceBundle messages;

      currentLocale = new Locale(language, country);

      messages =
        ResourceBundle.getBundle("MessagesBundle",currentLocale);

      System.out.println(messages.getString("greetings"));
      System.out.println(messages.getString("inquiry"));
      System.out.println(messages.getString("farewell"));
   }
}

MessagesBundle_en_US.properties

greetings = Hello.
farewell = Goodbye.
inquiry = How are you?

MessagesBundle_de_DE.properties

greetings = Hallo.
farewell = Tsch.
inquiry = Wie geht's?