Java 日期格式的月份名称的独立形式

Standalone form of month name in Java date format

我只需要将不完整的日期格式化为月份精度。我的第一个猜测是将模式 "MMMM yyyy" 应用于它。这适用于许多语言环境(英语、德语、...),但对于具有弹性的语言会产生丑陋的结果,例如俄语。我阅读了 documentation of SimpleDateFormat 并发现 'L' 应该给出不区分上下文的月份名称:正是我需要的,因为模式中没有月份中的某一天。所以我尝试了 pattern "LLLL yyyy" 。它非常适用于俄语和其他屈曲语言,但对于例如英语和德语...

这里是测试代码:

import java.text.*;
import java.util.*;

public class test
{
    public static void main (String[] arguments) throws Exception
    {
        for (String locale : new String[] { "en", "de", "hu", "it", "ru", "fi", "pl" })
            System.out.format ("%s: %s \t%s\n", locale,
                               new SimpleDateFormat ("MMMM yyyy", new Locale (locale)).format (new Date ()),
                               new SimpleDateFormat ("LLLL yyyy", new Locale (locale)).format (new Date ()));
    }
}

及其输出:

en: September 2015      0009 2015
de: September 2015      0009 2015
hu: szeptember 2015     szeptember 2015
it: settembre 2015      Settembre 2015
ru: сентября 2015       Сентябрь 2015
fi: syyskuuta 2015      syyskuu 2015
pl: września 2015       wrzesień 2015

因此,对于测试的语言环境:'en' 和 'de' 仅适用于 'M','hu' 适用于 'M' 和 'L'、'it' 可能用 'L' 更好(不知道大写字母在这里有多重要),而 'ru'、'fi' 和 'pl'仅使用 'L' 给出正确的输出(我真的只能说俄语和波兰语,但我认为它在芬兰语中类似)。

问题:

这是一个官方错误 - JDK-8075548

该错误的状态为 "resolved",您可以看到该修复已反向移植到 8_60 和 8_65 版本,但不是 Java 的早期版本8.

因此,如果可能的话,正确的解决方案是升级到 Java 1.8。0_60。

java.time

SimpleDateFormat class 是麻烦的旧日期时间 classes 的一部分,现在已成为遗留问题,被 java.time classes 取代.

在java.time中,格式化模式代码与旧代码类似,但接下来完全相同。请务必研究 class 文档以获取 DateTimeFormatter.

final DateTimeFormatter fCombo = DateTimeFormatter.ofPattern ( "MMMM uuuu" );
final DateTimeFormatter fStandalone = DateTimeFormatter.ofPattern ( "LLLL uuuu" );

final LocalDate localDate = LocalDate.now ( ZoneId.of ( "America/Montreal" ) );
for ( final String locale : new String[] { "en" ,  "fr" , "de" , "hu" , "it" , "ru" , "fi" , "pl" } ) {
    final Locale l = new Locale ( locale );

    System.out.format (
            "%s: %s | %s\n",
            locale,
            localDate.format ( fCombo.withLocale ( l ) ),
            localDate.format ( fStandalone.withLocale ( l ) )
    );
}

en: March 2017 | 3 2017

fr: mars 2017 | 3 2017

de: März 2017 | 3 2017

hu: március 2017 | március 2017

it: marzo 2017 | Marzo 2017

ru: марта 2017 | Март 2017

fi: maaliskuuta 2017 | maaliskuu 2017

pl: marca 2017 | marzec 2017


关于java.time

java.time framework is built into Java 8 and later. These classes supplant the troublesome old legacy date-time classes such as java.util.Date, Calendar, & SimpleDateFormat.

Joda-Time project, now in maintenance mode, advises migration to the java.time classes.

要了解更多信息,请参阅 Oracle Tutorial. And search Stack Overflow for many examples and explanations. Specification is JSR 310

从哪里获得java.time classes?

  • Java SE 8 and SE 9 及更高版本
    • 内置。
    • 标准 Java API 的一部分,带有捆绑实施。
    • Java 9 添加了一些小功能和修复。
  • Java SE 6 and SE 7
  • Android
    • ThreeTenABP 项目专门为 Android 改编 ThreeTen-Backport(上面提到的)。
    • 参见

ThreeTen-Extra project extends java.time with additional classes. This project is a proving ground for possible future additions to java.time. You may find some useful classes here such as Interval, YearWeek, YearQuarter, and more.