在Java 8 日期的偏移量中解析不含冒號的ISO 8601 字串
嘗試使用下列指令解析格式ISO 8601 解析格式的字串時會出現問題使用Java 8 中新的日期時間API 缺少冒號的偏移量(例如「2018-02-13T10:20:12.120 0000」)。
解決方案
直到錯誤修復(Java 8)
使用解決方法:
<code class="java">String input = "2018-02-13T10:20:12.120+0000".replace( "+0000" , "+00:00" ); OffsetDateTime odt = OffsetDateTime.parse( input );</code>
<code class="java">String input = "2018-02-13T10:20:12.120+0000" ; DateTimeFormatter f = DateTimeFormatter.ofPattern( "uuuu-MM-dd'T'HH:mm:ss.SSSX" ); OffsetDateTime odt = OffsetDateTime.parse( input , f );</code>
修復錯誤時:
要在沒有解決方法的情況下進行解析:
<code class="java">OffsetDateTime odt = OffsetDateTime.parse( "2018-02-13T10:20:12.120+0000" );</code>
附加說明:
以上是如何在 Java 8 中解析偏移量中缺少冒號的 ISO 8601 字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!