:5.256KB : :1 :2021-12-18 17:20:46
public static boolean isValidDate(String str) {
boolean convertSuccess=true;
// 指定日期格式为四位年/两位月份/两位日期,注意yyyy/MM/dd区分大小写;
SimpleDateFormat format = new SimpleDateFormat("yyyy/MM/dd HH:mm");
try {
// 设置lenient为false. 否则SimpleDateFormat会比较宽松地验证日期,比如2021/02/29会被接受,并转换成2021/03/01
format.setLenient(false);
format.parse(str);
} catch (ParseException e) {
// e.printStackTrace();
// 如果throw java.text.ParseException或者NullPointerException,就说明格式不对
convertSuccess=false;
}
return convertSuccess;
}
01-10DateFormatUtil日期格式化类
12-18Java常见日期格式使用
01-02excel文本日期转换为真日期格式
08-31excel单元格里的日期格式设置方法
11-24excel输入的数据直接显示成日期格式
11-15excel更改单元格日期格式技巧