/**
*结束日期与开始日期之间的间隔天数
*return 两个日期之间的天数
*/
private Long dateTest(String startDate, String endDate) throws ParseException {
Date start = new Date();
Date end = new Date();
if(startDate.contains("-")){
start = Toolbox.parseDate(startDate, "yyyy-MM-dd");
}else{
start = Toolbox.parseDate(startDate, "yyyyMMdd");
}
if(endDate.contains("-")){
end = Toolbox.parseDate(endDate, "yyyy-MM-dd");
}else{
end = Toolbox.parseDate(endDate, "yyyyMMdd");
}
long day = (end.getTime() - start.getTime()) / (24 * 60 * 60 * 1000);
return day;
}
时间: 2024-10-04 03:37:47