public static List getDates(String startDate, String endDate){
Date d1 = new SimpleDateFormat("yyyyMMdd").parse(startDate);//定义起始日期
Date d2 = new SimpleDateFormat("yyyyMMdd").parse(endDate);//定义结束日期
Calendar dd = Calendar.getInstance();//定义日期实例
dd.setTime(d1);//设置日期起始时间
List dates = new ArrayList<>()
while(dd.getTime() <= d2){
//判断是否到结束日期
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
dates.add(sdf.format(dd.getTime()))
dd.add(Calendar.DAY_OF_MONTH, 1);//进行当前日期月份加1
}
return dates ;
}