计算两个时间段内的所有时间
Posted 初见如月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算两个时间段内的所有时间相关的知识,希望对你有一定的参考价值。
public static List<String> getDate(Date startDate, Date endDate)
//定义时间格式
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
List<String> list = new ArrayList<>();
// 转化成日期类型
//用Calendar 进行日期比较判断
Calendar calendar = Calendar.getInstance();
while (startDate.getTime()<=endDate.getTime())
// 把日期添加到集合
list.add(simpleDateFormat.format(startDate));
// 设置日期
calendar.setTime(startDate);
//把日期增加一分
calendar.add(Calendar.DAY_OF_MONTH, 1);
// 获取增加后的日期
startDate=calendar.getTime();
return list;
以上是关于计算两个时间段内的所有时间的主要内容,如果未能解决你的问题,请参考以下文章