计算两个时间段内的所有时间

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;

以上是关于计算两个时间段内的所有时间的主要内容,如果未能解决你的问题,请参考以下文章

时间差函数列出两个时间内的所有日期

计算落在每个多边形内的点的模式

SQL - 显示给定范围内的所有日期,并使用数据库中的时间戳计算该日期有多少帖子

匹配两个给定标记内的所有文本

计算不同时间范围内项目的平均分钟数

MySQL:选择两个日期范围内的所有数据