我正在尝试使用 java.time.format.DateTimeFormatter 来解析时间字符串,但在解析德语短星期几名称时遇到了问题。给定以下程序import java.time.DayOfWeek;import java.time.format.DateTimeFormatter;import java.time.format.DateTimeFormatterBuilder;import java.time.format.TextStyle;import java.util.Locale;var locale = Locale.forLanguageTag("de");var dtf = new DateTimeFormatterBuilder() .appendOptional(DateTimeFormatter.ofPattern("eeee")) .appendOptional(DateTimeFormatter.ofPattern("eee")) .toFormatter(locale);var input1 = DayOfWeek.TUESDAY.getDisplayName(TextStyle.FULL, locale);var input2 = DayOfWeek.TUESDAY.getDisplayName(TextStyle.SHORT_STANDALONE, locale);System.out.printf("input: %s, parsed: %s\n", input1, dtf.parse(input1));System.out.printf("input: %s, parsed: %s\n", input2, dtf.parse(input2));我期望的输出是input: Dienstag, parsed: {DayOfWeek=2},ISOinput: Di, parsed: {DayOfWeek=2},ISO但我实际上得到input: Dienstag, parsed: {DayOfWeek=2},ISOException in thread "main" java.time.format.DateTimeParseException: Text 'Di' could not be parsed, unparsed text found at index 0 at java.base/java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:2049) at java.base/java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1874) at org.rksm.Main.main(Main.java:22)请注意,当我将语言环境更改为Locale.forLanguageTag("en")有效时,输出为input: Tuesday, parsed: {DayOfWeek=2},ISOinput: Tue, parsed: {DayOfWeek=2},ISO我究竟做错了什么?
1 回答
撒科打诨
TA贡献1934条经验 获得超2个赞
尽管在英语中单独使用日期名称和在日期上下文中使用的名称之间没有区别,但在德语中显然是有区别的。
模式eee
对应于TextStyle.SHORT
,而模式ccc
对应于TextStyle.SHORT_STANDALONE
。因此,如果您尝试在重要的语言中解析由TextStyle.SHORT_STANDALONE
with创建的日期名称,解析将失败。eee
要走的路是ccc
独立版本。
提到这个的文档实际上是在DateTimeFormatterBuilder
API 中而不是DateTimeFormatter
在 。
添加回答
举报
0/150
提交
取消