How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)
问题描述
我正在寻找一组命令行参数,这些参数允许我为 Java 应用程序强制执行一组特定的语言环境设置.
I'm looking for a set of command line parameters that will allow me to force a specific set of locale settings for a java application.
假设我无法修改应用程序,所以我必须使用 java -Dmy.prop="value"
设置属性.
Let's say that I'm not able to modify the application, so I have to set the properties using java -Dmy.prop="value"
.
我特别希望更改日期/时间格式以使其符合 ISO-8601(军用时间),但我找不到合适的属性.
I'm looking specially to change the date/time format to make it ISO-8601 compliant (military time), but I was not able to find the proper properties for this.
推荐答案
很好,我对同样的事情感兴趣,但到目前为止我只有一个部分解决方案:
Nice, i was interested about the same thing but so far I have only a partial solution:
user.timezone=UTC
user.country=CA
user.variant=
user.language=en
file.encoding=utf8
您可以使用加拿大,因为它是使用 ISO 8601 格式的国家之一.
You can use Canada, because it one of the countries using the ISO 8601 format.
这篇关于如何更改 Java 中的默认语言环境设置以使其保持一致?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何更改 Java 中的默认语言环境设置以使其保持一致?


- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01