我有一个JAR文件,该文件已针对我的语言进行了本地化,但是我不希望它使用该文件,我希望它使用英语。
有谁知道如何用英语运行JAR文件,或如何从JAR文件中删除本地化?
最佳答案
> java -Duser.language=2-char-lang-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
英文代码为
en
。