⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e336. setting the default locale.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
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=fr -Duser.region= MyApp
    // Set language and country code
    > java -Duser.language=fr -Duser.region=CA 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.FRENCH);
    
    // Set the default locale to custom locale
    locale = new Locale("fr", "CA");
    Locale.setDefault(locale);

 Related Examples 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -