本文介紹了DateTimeFormatterBuilder在Java 8中的用法,特別是可選選項(xiàng)的處理方法,對(duì)大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我正在嘗試從Joda遷移到Java 8的ZonedDateTime
,但我遇到了似乎無法解決的DateTimeFormatterBuilder
問題。
我想接受以下格式中的任何一種:
2013-09-20T07:00:33
2013-09-20T07:00:33.123
2013-09-20T07:00:33.123+0000
2013-09-20T07:00:33.123Z
2013-09-20T07:00:33.123Z+0000
2013-09-20T07:00:33+0000
這是我當(dāng)前的構(gòu)建器:
DateTimeFormatter formatter = new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.append(DateTimeFormatter.ISO_LOCAL_DATE_TIME)
.optionalStart()
.appendPattern(".SSS")
.optionalEnd()
.optionalStart()
.appendZoneId()
.optionalEnd()
.optionalStart()
.appendPattern("Z")
.optionalEnd()
.toFormatter();
我可能錯(cuò)了,但它似乎應(yīng)該與我想要的圖案相匹配…對(duì)嗎?
如果有人能指出我可能遺漏了什么,我將不勝感激。我也不太確定appendOffset
的用法,所以如果它被證明是答案,我也會(huì)很感激的。
編輯:
Text '2013-09-20T07:00:33.061+0000' could not be parsed at index 23
查看生成器,由于可選階段,這似乎是匹配的?
編輯2:
在看到第一個(gè)答案中的建議后,我嘗試了以下內(nèi)容:
DateTimeFormatter formatter = new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.append(DateTimeFormatter.ISO_LOCAL_DATE_TIME)
.optionalStart()
.appendPattern(".SSS")
.optionalEnd()
.optionalStart()
.appendZoneOrOffsetId()
.optionalEnd()
.toFormatter()
在上面的字符串上繼續(xù)失敗。
編輯3:
最新測試導(dǎo)致此異常:
java.time.format.DateTimeParseException: Text '2013-09-20T07:00:33.061+0000' could not be parsed at index 23
at java.time.format.DateTimeFormatter.parseResolved0(DateTimeFormatter.java:1947)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1849)
at java.time.ZonedDateTime.parse(ZonedDateTime.java:597)
at java.time.ZonedDateTime.parse(ZonedDateTime.java:582)
推薦答案
可能是因?yàn)?code>+0000不是區(qū)域ID,而是區(qū)域偏移量。
documentation提供此列表:
Symbol Meaning Presentation Examples
------ ------- ------------ -------
V time-zone ID zone-id America/Los_Angeles; Z; -08:30
z time-zone name zone-name Pacific Standard Time; PST
O localized zone-offset offset-O GMT+8; GMT+08:00; UTC-08:00;
X zone-offset 'Z' for zero offset-X Z; -08; -0830; -08:30; -083015; -08:30:15;
x zone-offset offset-x +0000; -08; -0830; -08:30; -083015; -08:30:15;
Z zone-offset offset-Z +0000; -0800; -08:00;
您可以使用appendOffset("+HHMM", "0000")
(doc)或appendZoneOrOffsetId()
(doc)來代替appendZoneId()
。
因此,您的完整格式化程序可能如下所示
DateTimeFormatter formatter = new DateTimeFormatterBuilder()
.parseCaseInsensitive()
.append(DateTimeFormatter.ISO_LOCAL_DATE_TIME)
.optionalStart()
.appendPattern(".SSS")
.optionalEnd()
.optionalStart()
.appendZoneOrOffsetId()
.optionalEnd()
.optionalStart()
.appendOffset("+HHMM", "0000")
.optionalEnd()
.toFormatter();
此外,創(chuàng)建ZonedDateTime的方式可能會(huì)影響是否存在異常。因此,我推薦以下幾點(diǎn),因?yàn)檫@一點(diǎn)沒有任何例外。
LocalDateTime time = LocalDateTime.parse("2013-09-20T07:00:33.123+0000", formatter);
ZonedDateTime zonedTime = time.atZone(ZoneId.systemDefault());
這篇關(guān)于DateTimeFormatterBuilder在Java 8中的用法,特別是可選選項(xiàng)的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,