public static List<Date> genDateList(Date beginDate,Date endDate){
List<Date> dateList = new ArrayList<Date>();
Calendar start = Calendar.getInstance();
start.setTime(beginDate);
Long startTIme = start.getTimeInMillis();
Calendar end = Calendar.getInstance();
end.setTime(endDate);
Long endTime = end.getTimeInMillis();
Long oneDay = 1000 * 60 * 60 * 24l;
Long time = startTIme;
while (time <= endTime) {
dateList.add(new Date(time));
time += oneDay;
}
return dateList;
}
获取两个日期之间的所有日期列表
Posted handy-liu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取两个日期之间的所有日期列表相关的知识,希望对你有一定的参考价值。
以上是关于获取两个日期之间的所有日期列表的主要内容,如果未能解决你的问题,请参考以下文章