new LocalDateTime("1999-12-31T00:00:00Z");
当我尝试创建此日期时间时,我得到:
Exception in thread "main" java.lang.IllegalArgumentException: Invalid format: "1999-12-31T00:00:00Z" is malformed at "Z"
at org.joda.time.format.DateTimeParserBucket.doParseMillis(DateTimeParserBucket.java:187)
at org.joda.time.format.DateTimeFormatter.parseMillis(DateTimeFormatter.java:780)
at org.joda.time.convert.StringConverter.getPartialValues(StringConverter.java:87)
at org.joda.time.LocalDateTime.<init>(LocalDateTime.java:414)
at org.joda.time.LocalDateTime.<init>(LocalDateTime.java:358)
如何将该日期解析为LocalDateTime?
答案 0 :(得分:7)
如何将该日期解析为LocalDateTime?
您不能 - LocalDateTime
表示根本没有关联时区的日期和时间。如果您有一个锚定到时区的时间戳(在本例中为UTC),那么您应该使用DateTime
而不是LocalDateTime
。