在 Java 中将字符串转换为 OffsetDateTime
我正在尝试转换字符串,但得到以下错误。OffsetDateTime
java.time.format.DateTimeParseException: Text '20150101' could not be parsed: Unable to obtain OffsetDateTime from TemporalAccessor: {},ISO resolved to 2015-01-01 of type java.time.format.Parsed
法典:OffsetDateTime.parse("20150101", DateTimeFormatter.ofPattern("yyyyMMdd"));
预期输出:OffsetDateTime object with date 20150101.
我真的很感激你能提供的任何帮助。
谢谢