gpt4 book ai didi

java.time.format.DateTimeParseException : Text '10-03-2021' could not be parsed at index 0

转载 作者:行者123 更新时间:2023-12-01 23:29:28 26 4
gpt4 key购买 nike

我正在尝试在 Spring Boot 中使用 DateTimeFormatter 将字符串转换为 Java8 的日期格式,但我收到错误 [[java.time.format.DateTimeParseException: Text '10-03-2021' could not be parsed at index 0]]。我正在使用 LocalDate,因为我希望我的输出只有没有时间的日期。我在我的代码中做错了什么。

    String date= "10-03-2021"
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEEE, MMM d, yyyy",Locale.forLanguageTag("sw-TZ"));
LocalDateTime dateTime = LocalDateTime.parse(date, formatter);
System.out.println(dateTime.format(formatter));

最佳答案

您需要先解析 dd-MM-yyyy 格式的 date,然后将其格式化为您选择的格式。

String date= "10-03-2021";
DateTimeFormatter format = DateTimeFormatter.ofPattern("dd-MM-yyyy");
LocalDate localDate = LocalDate.parse(date, format);

DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEEE, MMM d, yyyy",Locale.forLanguageTag("sw-TZ"));
System.out.println(localDate.format(formatter));

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

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