gpt4 book ai didi

java.time.format.DateTimeParseException : Text '2016-2-2' could not be parsed at index 5

转载 作者:行者123 更新时间:2023-12-02 02:31:39 30 4
gpt4 key购买 nike

我正在尝试从 import java.time.LocalDate; 创建一个 LocalDate 实例我关注this

这是我的代码:

     LocalDate sd=  LocalDate.parse("2016-2-2");

我遇到了错误:

java.time.format.DateTimeParseException: Text '2016-2-2' could not be parsed at index 5
at java.time.format.DateTimeFormatter.parseResolved0(Unknown Source)
<小时/>

在另一次尝试创建 LocalDate 实例时,我尝试了

LocalDate ed=  new LocalDate("2016-2-4");

但它再次提示:

The constructor LocalDate(String) is undefined

最佳答案

您需要使用格式化程序来解析 java.time.LocalDate 的单字符日/月字段

DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-M-d");
LocalDate date = LocalDate.parse("2016-2-2", formatter);

关于java.time.format.DateTimeParseException : Text '2016-2-2' could not be parsed at index 5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35878574/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com