对于下面的代码,当我像这样在Tomcat Web应用程序中运行它时,会得到不同的结果。

public static void main(String[] args)
{
    System.out.println(System.getProperty("user.language"));
    System.out.println(System.getProperty("user.country"));
    System.out.println(Locale.getDefault(Category.DISPLAY));
    System.out.println(Locale.getDefault(Category.FORMAT));

    Locale l = new Locale("de", "DE");
    System.out.println(l.getDisplayLanguage());
    DecimalFormatSymbols dfs = new DecimalFormatSymbols(l);
    System.out.println(dfs.getDecimalSeparator());

    l = new Locale.Builder().setLanguage("de").setRegion("DE").build();
    System.out.println(l.getDisplayLanguage());
    dfs = new DecimalFormatSymbols(l);
    System.out.println(dfs.getDecimalSeparator());
}

独立结果(预期):

en
US
en_US
en_US
German
,
German
,

在Tomcat中:

en
US
en_US
en_US
German
.
German
.

有人可以建议不使用提供的语言环境的其他因素会影响DecimalFormatSymbols(以及该问题的NumberFormat)。
我正在使用语言级别为1.7的JDK 1.8。

编辑:仅当Tomcat在Eclipse中运行时,才会发生这种情况。 Eclipse/OSGi似乎会干扰基于语言环境的格式,但仅在特定情况下才如此。

最佳答案

Tomcat我们的ENV设置可能有问题,我从here帖子中看到了。

尝试按照以上文章中的建议启动tomcat,并将以下参数设置为批处理文件:

-Duser.timezone=Europe/Berlin
-Duser.country=DE
-Duser.language=de

10-07 16:06
查看更多