/**
*結束日期與開始日期之間的間隔天數
*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;
}