我试图以LocalDateTime
这种方式用java(在Scala中)解析这样的日期“2020-07-01T00:00:00Z”:
LocalDateTime.parse("2020-07-01T00:00:00Z", ISO_INSTANT)
但我得到了这个例外:
java.time.format.DateTimeParseException: Text '2020-07-01T00:00:00Z' could not be parsed: Unable to obtain LocalDate from TemporalAccessor
这里可能是什么问题?
这些是我的图书馆:
import java.time.format.DateTimeFormatter._
import java.time.LocalDateTime