获取一段时间内的所有日期
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取一段时间内的所有日期相关的知识,希望对你有一定的参考价值。
public static List Day(String begin, String end) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
List strDate = new ArrayList();
strDate.add(begin)
Calendar calendar = Calendar.getInstance();
calendar.setTime(sdf.parse(begin))
boolean bContinue = true;
while (bContinue) {
calendar.add(Calendar.DAY_OF_MONTH, 1)
if (sdf.parse(end).after(calendar.getTime())) {
strDate.add(sdf.format(calendar.getTime()).toString())
} else {
break;
}
}
strDate.add(end)
return strDate
}
以上是关于获取一段时间内的所有日期的主要内容,如果未能解决你的问题,请参考以下文章
Oracle查询一段日期内的星期的日期..例如我要查2011-3-18至2011-3-30内所有星期一的日期..应该怎样查询
pandas使用bdate_range函数获取起始时间(start)和结束时间(end)范围内的所有周末日期(weekends day)