我正在将现有的应用程序从Joda-Time移植到Java 8 java.time
。
我遇到了一个问题,解析包含“星期几”值的日期/时间字符串会在我的单元测试中触发异常。
解析时:
2016-12-21 20:50:25 12月周三+0000 3
使用格式:
yyyy'-'MM'-'dd' 'HH':'mm':'ss' 'EEEE' 'MMMM' 'ZZ' 'e
我明白了:
java.time.format.DateTimeParseException:
Text '2016-12-21 20:50:25 Wednesday December +0000 3'
could not be parsed: Conflict found:
Field DayOfWeek 3 differs from DayOfWeek 2 derived from 2016-12-21
让DateTimeFormatter
表示期望的内容:
String logline = "2016-12-21 20:50:25 Wednesday December +0000";
String format = "yyyy'-'MM'-'dd' 'HH':'mm':'ss' 'EEEE' 'MMMM' 'ZZ";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern(format).withLocale(Locale.ENGLISH);;
ZonedDateTime dateTime = formatter.parse(logline, ZonedDateTime::from);
format = "yyyy'-'MM'-'dd' 'HH':'mm':'ss' 'EEEE' 'MMMM' 'ZZ' 'e";
formatter = DateTimeFormatter.ofPattern(format).withLocale(Locale.ENGLISH);
System.out.println(formatter.format(dateTime));
我现在得到这个输出:
2016-12-21 20:50:25 Wednesday December +0000 4
问题的根本原因是,Joda-Time中的e
标志认为星期一是1
而Java 8 java.time
认为星期一是0
}。
现在我在the Oracle documentation和JSR-310中找到了java.time.DateTimeFormatter
支持的模式:
e/c localized day-of-week number/text 2; 02; Tue; Tuesday; T
2
和“星期二”这个明确的例子让我相信星期三也应该在java.time中3
而不是4
。
这里有什么问题? 我误解了吗? 这是Java 8中的错误吗?
答案 0 :(得分:11)
Joda-Time和java.time
如何解释模式e
有所不同。
在Joda-Time中,e
模式designates the numeric value of day-of-week:
Symbol Meaning Presentation Examples
------ ----------- ------------ -------
e day of week number 2
因此,使用e
相当于从日期对象获取星期几:
// using org.joda.time.DateTime and org.joda.time.format.DateTimeFormat
DateTime d = new DateTime(2016, 12, 21, 20, 50, 25, 0, DateTimeZone.UTC);
DateTimeFormatter fmt = DateTimeFormat.forPattern("e").withLocale(Locale.ENGLISH);
System.out.println(d.toString(fmt)); // 3
System.out.println(d.getDayOfWeek()); // 3
System.out.println(d.dayOfWeek().getAsText(Locale.ENGLISH)); // Wednesday
请注意,格式化程序和getDayOfWeek()
都返回3
。 getDayOfWeek()
method会根据DateTimeConstants
class返回Wednesday's value is 3
和the third day of the week(ISO's definition)中定义的值。
在java.time
API中,模式e
has a different meaning:
Pattern Count Equivalent builder methods
------- ----- --------------------------
e 1 append special localized WeekFields element for numeric day-of-week
它使用本地化的WeekFields
元素,这可能会根据区域设置而有所不同。与getDayOfWeek()
方法相比,行为可能会有所不同:
ZonedDateTime z = ZonedDateTime.of(2016, 12, 21, 20, 50, 25, 0, ZoneOffset.UTC);
DateTimeFormatter fmt = DateTimeFormatter.ofPattern("e", Locale.ENGLISH);
System.out.println(z.format(fmt)); // 4
System.out.println(z.getDayOfWeek()); // WEDNESDAY
System.out.println(z.getDayOfWeek().getValue()); // 3
请注意,格式化程序使用英语区域设置的本地化星期几,值为4
,而调用getDayOfWeek().getValue()
则返回3
。
那是因为e
英语语言环境相当于使用java.time.temporal.WeekFields
:
// using localized fields
WeekFields wf = WeekFields.of(Locale.ENGLISH);
System.out.println(z.get(wf.dayOfWeek())); // 4
虽然getDayOfWeek()
等同于使用ISO的定义:
// same as getDayOfWeek()
System.out.println(z.get(WeekFields.ISO.dayOfWeek())); // 3
这是因为ISO的定义使用星期一作为一周的第一天,而英语语言环境的WeekFields
使用星期日:
// comparing the first day of week
System.out.println(WeekFields.ISO.getFirstDayOfWeek()); // MONDAY
System.out.println(wf.getFirstDayOfWeek()); // SUNDAY
因此,根据格式化程序中设置的语言环境(或JVM默认语言环境,如果未设置),e
模式可能与getDayOfWeek()
的行为不同或不同。例如,在法语区域设置中,它的行为与ISO类似,而在某些阿拉伯语区域设置中,一周的第一天是星期六:
WeekFields.of(Locale.FRENCH).getFirstDayOfWeek(); // MONDAY
WeekFields.of(new Locale("ar", "AE")).getFirstDayOfWeek(); // SATURDAY
根据javadoc,返回星期几数值的唯一模式似乎是本地化的。因此,要解析输入2016-12-21 20:50:25 Wednesday December +0000 3
,您可以使用java.time.format.DateTimeFormatterBuilder
并使用java.time.temporal.ChronoField
加入日期/时间模式以指示星期几的数值(ISO非区域敏感字段):
String input = "2016-12-21 20:50:25 Wednesday December +0000 3";
DateTimeFormatter parser = new DateTimeFormatterBuilder()
// date/time pattern
.appendPattern("yyyy-MM-dd HH:mm:ss EEEE MMMM ZZ ")
// numeric day of week
.appendValue(ChronoField.DAY_OF_WEEK)
// create formatter with English locale
.toFormatter(Locale.ENGLISH);
ZonedDateTime date = ZonedDateTime.parse(input, parser);
另请注意,您无需引用-
,:
和空格字符,因此模式更清晰易读(IMO)。
我还设置了英语语言环境,因为如果你没有设置,它将使用JVM默认语言环境,并且不保证总是英语。即使在运行时也可以在不事先通知的情况下进行更改,因此最好指定一个,特别是如果您已经知道输入的语言是什么。
更新:可能ccccc
模式应该有效,因为它等同于appendText(ChronoField.DAY_OF_WEEK, TextStyle.NARROW_STANDALONE)
,在我的测试中(JDK 1.8.0_144)它返回(并且还解析){ {1}}:
3
答案 1 :(得分:1)
在Locale.ENGLISH
星期三是星期四的第4天,星期日开始。
您可以使用
WeekFields.of(Locale.ENGLISH).getFirstDayOfWeek(); //it's SUNDAY