Java:无法从 TemporalAccessor 获取 LocalDate

2022-09-02 03:53:03

我正在尝试将日期的格式从更改为 by,首先将其转换为 a,然后将不同模式的格式化程序应用于 ,然后再将其解析为。StringEEEE MMMM dMM/d/yyyyLocalDateLocalDateString

这是我的代码:

private String convertDate(String stringDate) 
{
    //from EEEE MMMM d -> MM/dd/yyyy

    DateTimeFormatter formatter = new DateTimeFormatterBuilder()
            .parseCaseInsensitive()
            .append(DateTimeFormatter.ofPattern("EEEE MMMM d"))
            .toFormatter();

    LocalDate parsedDate = LocalDate.parse(stringDate, formatter);
    DateTimeFormatter formatter2 = DateTimeFormatter.ofPattern("MM/d/yyyy");

    String formattedStringDate = parsedDate.format(formatter2);

    return formattedStringDate;
}

但是,我收到此异常消息,我并不真正理解:

Exception in thread "main" java.time.format.DateTimeParseException: Text 'TUESDAY JULY 25' could not be parsed: Unable to obtain LocalDate from TemporalAccessor: {DayOfWeek=2, MonthOfYear=7, DayOfMonth=25},ISO of type java.time.format.Parsed
    at java.time.format.DateTimeFormatter.createError(DateTimeFormatter.java:1920)

答案 1

LocalDate的文档说,

LocalDate 是一个不可变的日期-时间对象,它表示一个日期,通常被视为年-月-日。例如,值“2007 年 10 月 2 日”可以存储在 LocalDate 中。

在您的情况下,输入缺少 的一个重要组成部分,即年份。你拥有的基本上是月份和日期。因此,您可以使用适合该月日的类。使用该,您的代码可以修改为:StringLocalDate

DateTimeFormatter formatter = new DateTimeFormatterBuilder()
                .parseCaseInsensitive()
                .append(DateTimeFormatter.ofPattern("EEEE MMMM d"))
                .toFormatter();

 MonthDay monthDay = MonthDay.parse(stringDate, formatter);
 LocalDate parsedDate = monthDay.atYear(2017); // or whatever year you want it at
 DateTimeFormatter formatter2 = DateTimeFormatter.ofPattern("MM/d/yyyy");

 String formattedStringDate = parsedDate.format(formatter2);
 System.out.println(formattedStringDate); //For "TUESDAY JULY 25" input, it gives the output 07/25/2017 

答案 2

正如其他答案已经说过的那样,要创建一个您需要年份,这不在输入中 。它只有星期月份星期几LocalDateString

要获得完整的 ,您需要解析,并找到此日/月组合与星期几匹配的年份LocalDate

当然,您可以忽略星期几,并假设日期始终在当前年份;在这种情况下,其他答案已经提供了解决方案。但是,如果您想找到与星期几完全匹配的年份,则必须循环直到找到它。

我还创建了一个带有 的格式化程序,以明确表示我想要英文的月份星期几名称。如果未指定区域设置,它将使用系统的默认值,并且不能保证始终为英语(并且可以在不另行通知的情况下进行更改,即使在运行时也是如此)。java.util.Locale

DateTimeFormatter formatter = new DateTimeFormatterBuilder()
    .parseCaseInsensitive()
    .append(DateTimeFormatter.ofPattern("EEEE MMMM d"))
    // use English Locale to correctly parse month and day of week
    .toFormatter(Locale.ENGLISH);
// parse input
TemporalAccessor parsed = formatter.parse("TUESDAY JULY 25");
// get month and day
MonthDay md = MonthDay.from(parsed);
// get day of week
DayOfWeek dow = DayOfWeek.from(parsed);
LocalDate date;
// start with some arbitrary year, stop at some arbitrary value
for(int year = 2017; year > 1970; year--) {
    // get day and month at the year
    date = md.atYear(year);
    // check if the day of week is the same
    if (date.getDayOfWeek() == dow) {
        // found: 'date' is the correct LocalDate
        break;
    }
}

在这个例子中,我从2017年开始,并试图找到一个日期,直到1970年,但你可以适应适合你的用例的值。

您还可以使用 获取当前年份(而不是某个固定的任意值)。Year.now().getValue()


推荐