18

我正在尝试将String日期的格式从EEEE MMMM d更改MM/d/yyyy为,首先,将其转换为 a LocalDate,然后将不同模式的格式化程序LocalDate应用于再次解析它之前String

这是我的代码:

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)
4

4 回答 4

13

的文档LocalDate说,

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

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

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 
于 2017-07-26T08:48:17.627 回答
10

正如其他答案已经说过的那样,要创建一个LocalDate您需要的year,它不在 input 中String。它只有星期几、月份星期几

要获得完整信息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()

于 2017-07-26T12:05:07.740 回答
4

这是您需要实施的小改动:

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

    DateTimeFormatter formatter = new DateTimeFormatterBuilder().appendPattern("EEEE MMMM dd")
                                        .parseDefaulting(ChronoField.YEAR, 2017)
                                        .toFormatter();

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

    String formattedStringDate = parsedDate.format(formatter2);

    return formattedStringDate;
}
  1. 使用在格式化程序中添加默认的年代年份.parseDefaulting(ChronoField.YEAR, 2017)

  2. "Tuesday July 25"使用这样的参数调用方法convertDate("Tuesday July 25");

于 2017-07-26T08:55:18.107 回答
-1

另一种选择是执行以下操作(就像其他答案有点骇人听闻一样),当然假设您希望日期在当年:

LocalDate localDate = LocalDate.parse(stringDate + " " +LocalDate.now().getYear(), DateTimeFormatter.ofPattern("EEEE MMMM d");
于 2017-07-26T09:09:46.633 回答