java – Joda-Time的时区关闭了10个小时
作者:互联网
我需要将字符串解析为Joda-Time DateTime(或java.util.Date.)这是我得到的字符串的示例:
eventDateStr = 2013-02-07T16:05:54-0800
我正在使用的代码:
DateTimeFormatter presentation = DateTimeFormat.forPattern("yyyy-MM-dd kk:mm:ssZ");
DateTime eveDate = presentation.parseDateTime(eventDateStr);
以上抛出此异常:
Invalid format: "2013-02-07T16:05:54-0800" is malformed at "T04:03:20-0800"
所以我正在解析’T’:
eventDateStr = eventDateStr.indexOf("T") > 0 ? eventDateStr.replace("T", " ") : eventDateStr;
再试一次.这次没有例外,但时区已关闭:
2013-02-08T02:05:54.000+02:00
注意区别:在原始字符串中,时区为’-0800′,此处为’02:00′.这反过来会改变整个日期,现在是一天之后.
我究竟做错了什么?
解决方法:
在DateTimeFormatter对象上调用方法withOffsetParsed
以获取DateTimeFormatter,该DateTimeFormatter保持从String解析时区,而不是将其偏移到本地时区.
关于为什么在打印DateTime时显示T,Basil Bourque在下面的评论中有一个很好的解释.
Regarding
T
, aDateTime
is not a string nor does it contain a string. A 07002 instance can generate a string representation of the date, time, and time zone information stored within aDateTime
. When you invoke thetoString
method on aDateTime
(07003), a built-in formatter based on 07004 is used automatically. That formatter usesYYYY-MM-DDTHH:MM:SS.ssssss+00:00
format.
标签:java,timezone,datetime,jodatime,datetime-format 来源: https://codeday.me/bug/20190901/1781817.html