是否有用于 Atom Dates 的日期格式化工具。
根据此链接: https ://www.rfc-editor.org/rfc/rfc4287
Such date values happen to be compatible with the following
specifications: [ISO.8601.1988], [W3C.NOTE-datetime-19980827], and
[W3C.REC-xmlschema-2-20041028].
Example Date constructs:
<updated>2003-12-13T18:30:02Z</updated>
<updated>2003-12-13T18:30:02.25Z</updated>
<updated>2003-12-13T18:30:02+01:00</updated>
<updated>2003-12-13T18:30:02.25+01:00</updated>
我尝试使用 Joda ISODateTimeFormat.dateTime();
,但它似乎在没有毫秒的情况下无法处理解析(例如 2003-12-13T18:30:02Z)。
解析所有这些日期格式的最简单方法是什么?