Unable to obtain LocalDateTime from TemporalAccessor: {},ISO resolved to 2023-07-12 of type java.time.format.Parsed
时间: 2024-04-12 15:28:33 浏览: 88
这个错误通常是因为你在使用`LocalDateTime`的`parse`方法时,提供的日期字符串无法正确解析为日期对象。根据错误消息中的信息,你提供的日期字符串是空的,所以无法解析成有效的日期。
请确保你提供的日期字符串不为空,并且符合`ISO`格式,例如:"2023-07-12T10:30:00"。如果你提供的日期字符串格式不是`ISO`,你可能需要使用`DateTimeFormatter`来指定正确的日期格式。
以下是一个示例代码,演示如何使用`DateTimeFormatter`来解析日期字符串:
```java
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeParseException;
public class Example {
public static void main(String[] args) {
String dateString = "2023-07-12T10:30:00";
DateTimeFormatter formatter = DateTimeFormatter.ISO_DATE_TIME;
try {
LocalDateTime dateTime = LocalDateTime.parse(dateString, formatter);
System.out.println("Parsed LocalDateTime: " + dateTime);
} catch (DateTimeParseException e) {
System.out.println("Failed to parse LocalDateTime: " + e.getMessage());
}
}
}
```
请确保提供的日期字符串不为空,并且符合指定的日期格式,这样就可以成功解析为`LocalDateTime`对象了。
阅读全文