需要从格式2016-06-24T13:39:44.687680
解析日期时间。
第一步使用,尝试用线解析没有微秒的时间。
System.out.println(OffsetDateTime.parse("2011-12-03T10:15:30", DateTimeFormatter.ISO_LOCAL_DATE_TIME));
有例外
Exception in thread "main" java.time.format.DateTimeParseException: Text '2011-12-03T10:15:30' could not be parsed: Unable to obtain OffsetDateTime from TemporalAccessor: {},ISO resolved to 2011-12-03T10:15:30 of type java.time.format.Parsed
at java.time.format.DateTimeFormatter.createError(DateTimeFormatter.java:1920)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1855)
at java.time.OffsetDateTime.parse(OffsetDateTime.java:402)
at timeread.TimeReading.main(TimeReading.java:18)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)
Caused by: java.time.DateTimeException: Unable to obtain OffsetDateTime from TemporalAccessor: {},ISO resolved to 2011-12-03T10:15:30 of type java.time.format.Parsed
at java.time.OffsetDateTime.from(OffsetDateTime.java:370)
at java.time.format.Parsed.query(Parsed.java:226)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1851)
... 7 more
Caused by: java.time.DateTimeException: Unable to obtain ZoneOffset from TemporalAccessor: {},ISO resolved to 2011-12-03T10:15:30 of type java.time.format.Parsed
at java.time.ZoneOffset.from(ZoneOffset.java:348)
at java.time.OffsetDateTime.from(OffsetDateTime.java:359)
... 9 more
尝试将DateTimeFormatter
与TimeZone
一起使用
System.out.println(OffsetDateTime.parse("2011-12-03T10:15:30", DateTimeFormatter.ISO_LOCAL_DATE_TIME.withZone(ZoneId.systemDefault())));
类似的例外
Exception in thread "main" java.time.format.DateTimeParseException: Text '2011-12-03T10:15:30' could not be parsed: Unable to obtain OffsetDateTime from TemporalAccessor: {InstantSeconds=1322892930},ISO,Europe/Moscow resolved to 2011-12-03T10:15:30 of type java.time.format.Parsed
at java.time.format.DateTimeFormatter.createError(DateTimeFormatter.java:1920)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1855)
at java.time.OffsetDateTime.parse(OffsetDateTime.java:402)
at timeread.TimeReading.main(TimeReading.java:18)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)
Caused by: java.time.DateTimeException: Unable to obtain OffsetDateTime from TemporalAccessor: {InstantSeconds=1322892930},ISO,Europe/Moscow resolved to 2011-12-03T10:15:30 of type java.time.format.Parsed
at java.time.OffsetDateTime.from(OffsetDateTime.java:370)
at java.time.format.Parsed.query(Parsed.java:226)
at java.time.format.DateTimeFormatter.parse(DateTimeFormatter.java:1851)
... 7 more
Caused by: java.time.DateTimeException: Unable to obtain ZoneOffset from TemporalAccessor: {InstantSeconds=1322892930},ISO,Europe/Moscow resolved to 2011-12-03T10:15:30 of type java.time.format.Parsed
at java.time.ZoneOffset.from(ZoneOffset.java:348)
at java.time.OffsetDateTime.from(OffsetDateTime.java:359)
... 9 more
OffsetDateTime
是日期时间的表示形式,带有抵消。要创建OffsetDateTime
,您需要一个区域偏移量。
ISO-8601 日历中与 UTC/格林威治有偏移量的日期时间 系统,如 2007-12-03T10:15:30+01:00。
参见:https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html
例如:
OffsetDateTime.parse("2011-12-03T10:15:30+01:00", DateTimeFormatter.ISO_OFFSET_DATE_TIME);
如果尝试使用 ZoneId
解析日期时间,则应使用 ZonedDateTime
。
在 ISO-8601 日历系统中具有时区的日期时间,例如 2007-12-03T10:15:30+01:00 欧洲/巴黎。
参见:https://docs.oracle.com/javase/8/docs/api/java/time/ZonedDateTime.html
例如:
ZonedDateTime.parse("2011-12-03T10:15:30", DateTimeFormatter.ISO_LOCAL_DATE_TIME.withZone(ZoneId.systemDefault()));
如果您需要的是 ISO-8601 日历系统中没有时区的日期时间,您可以使用 LocalDateTime
.
ISO-8601 日历系统中没有时区的日期时间,例如 如 2007-12-03T10:15:30。
请参阅: https://docs.oracle.com/javase/8/docs/api/java/time/LocalDateTime.html
例如:
LocalDateTime.parse("2016-06-24T13:39:44.687680", DateTimeFormatter.ISO_LOCAL_DATE_TIME);
OffsetDateTime.parse
需要一个包含偏移量(+/-hh:mm
(的字符串,而"2011-12-03T10:15:30"
没有。使用 LocalDateTime.parse
解析它并使用 OffsetDateTime.of
转换结果。
我有一个稍微不标准的ISO(!(日期来解析2021-01-14T09:25:33+0000
标准DateTimeFormatter.ISO_OFFSET_DATE_TIME
无法处理它,但DateTimeFormatterBuilder
可用于从现有的 ISO 格式创建一个可以处理它。
DateTimeFormatter customFormatter = new DateTimeFormatterBuilder()
.append(DateTimeFormatter.ISO_LOCAL_DATE_TIME)
.appendOffset("+HHMM","Z")
.toFormatter();
重要的一点是.appendOffset()
方法,因为使用 .ofPattern()
似乎不适用于偏移量分析。
指定DateTimeFormatter
来解析给定的字符串
您不需要DateTimeFormatter
即可将日期时间字符串 2016-06-24T13:39:44.687680 解析为LocalDateTime
,因为它已经采用 LocalDateTime#parse
使用的默认格式。请注意,java.time
API 基于 ISO 8601 标准。
演示:
import java.time.LocalDateTime;
public class Main {
public static void main(String[] args) {
LocalDateTime ldt = LocalDateTime.parse("2016-06-24T13:39:44.687680");
System.out.println(ldt);
}
}
输出:
2016-06-24T13:39:44.687680
如何将LocalDateTime
字符串解析为OffsetDateTime
?
您可以使用适用的ZoneId
创建一个DateTimeFormatter
,以将LocalDateTime
字符串解析为ZonedDateTime
而而又可以转换为OffsetDateTime
。
演示:
public class Main {
public static void main(String[] args) {
String strDateTime = "2016-06-24T13:39:44.687680";
// DateTimeFormatter with system time zone
DateTimeFormatter parserForDefaultTz = DateTimeFormatter.ISO_LOCAL_DATE_TIME.withZone(ZoneId.systemDefault());
OffsetDateTime odtSystemTz = ZonedDateTime.parse(strDateTime, parserForDefaultTz).toOffsetDateTime();
System.out.println(odtSystemTz);
// DateTimeFormatter with UTC time zone offset
DateTimeFormatter parserForUtc = DateTimeFormatter.ISO_LOCAL_DATE_TIME.withZone(ZoneId.of("UTC"));
OffsetDateTime odtUtc = ZonedDateTime.parse(strDateTime, parserForUtc).toOffsetDateTime();
System.out.println(odtUtc);
// For UTC it is even easier
odtUtc = OffsetDateTime.parse(strDateTime, DateTimeFormatter.ISO_LOCAL_DATE_TIME.withZone(ZoneOffset.UTC));
System.out.println(odtUtc);
}
}
输出:
2016-06-24T13:39:44.687680+01:00
2016-06-24T13:39:44.687680Z
2016-06-24T13:39:44.687680Z
但是,更干净的解决方案是将本地日期时间字符串解析为LocalDateTime
并将其转换为OffsetDateTime
,如本答案中所述。请注意,DateTimeFormatter.ISO_LOCAL_DATE_TIME
是 LocalDateTime#parse
使用的默认格式。如果日期时间字符串采用自定义格式,请创建要在此代码中使用的相应DateTimeFormatter
。
要了解有关现代日期-时间 API 的更多信息,请参阅跟踪:日期时间。