semi-sleep

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  17 Posts :: 0 Stories :: 1 Comments :: 0 Trackbacks
There are two ways to change the default locale. The first is to set it on the command line:
> java -Duser.language=2-char-language-code -Duser.region=2-char-country-code MyApp

// Set only language code
> java -Duser.language=en -Duser.region= MyApp
// Set language and country code
> java -Duser.language=en -Duser.region=US MyApp

The second way to change the default locale is to call Locale.setDefault():
// Get default locale
Locale locale = Locale.getDefault();

// Set the default locale to pre-defined locale
Locale.setDefault(Locale.US);

// Set the default locale to custom locale
locale = new Locale("en", "US");
Locale.setDefault(locale);
posted on 2008-12-28 16:36 semi-sleep 阅读(282) 评论(0)  编辑  收藏 所属分类: howto

只有注册用户登录后才能发表评论。


网站导航: