我最近开始在Java中使用util.Date,只是为了了解您无法添加/减去天数,因此我现在开始使用LocalDate。

我有一个网络应用程序,允许用户以“ dd / MM / yyyy”格式输入日期,并且需要将其转换为“ yyyy-MM-dd”。如果输入的日期不存在,则应用程序还需要引发错误。

以下是我正在使用的测试应用程序。它可以工作,但是错误地允许使用“ 31/02/2018”之类的日期。我尝试添加'.withResolverStyle(ResolverStyle.STRICT)',但是出现了不同的错误。

package javaapplication1;

import java.text.ParseException;
import java.time.format.DateTimeFormatter;
import java.time.LocalDate;
import java.time.format.ResolverStyle;

public class JavaApplication1 {

    public static void main(String[] args) {

        LocalDate today = LocalDate.now();

        LocalDate date;

        try {
            String strDate = "31/2/09"; // Input from user
            System.out.println("Form: " + strDate);

            date = setDate(strDate, "d/M/yy");

            System.out.println("Data: " + convertDateToString(date, "yyyy-MM-dd")); // Convert format for insertting into database

            // If date is older than 1 year, output message
            if (date.isBefore(today.minusYears(1))) {
                System.out.println("Date is over a year old");
            }

            // If date is older than 30 days, output message
            if (date.isBefore(today.minusDays(30))) {
                System.out.println("Date is over 30 days old");
            }
        }
        catch (ParseException e) {
            System.out.println("Invalid date!");
            e.printStackTrace();
        }
    }

    private static LocalDate setDate(String strDate, String dateFormat) throws ParseException {

        DateTimeFormatter dtf = DateTimeFormatter.ofPattern(dateFormat).withResolverStyle(ResolverStyle.STRICT);

        //sdf.setLenient(false);

        LocalDate date = LocalDate.parse(strDate, dtf);

        return date;
    }

    private static String convertDateToString(LocalDate date, String dateFormat) {

        //DateTimeFormatter dtf = DateTimeFormatter.ofPattern(dateFormat);

        String strDate = date.toString();

        return strDate;
    }
}

最佳答案

使用DateTimeParseExeption解决了问题。

为了使ResolverStyle.STRICT正常工作,需要使用'uuuu'而不是'yyyy'来表示年份。

10-07 19:34
查看更多