首页 > 其他分享 >获取两个日期之间的所有日期(年月日)

获取两个日期之间的所有日期(年月日)

时间:2022-11-24 12:44:46浏览次数:42  
标签:sdf 获取 日期 startTime 年月日 endTime Calendar

1:获取两个日期之间的所有日期 (年月日)

/**
     * 获取两个日期之间的所有日期 (年月日)
     *
     * @param startTime
     * @param endTime
     * @return
     */
    public static List<String> getBetweenDate(String startTime, String endTime) {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        // 声明保存日期集合
        List<String> list = new ArrayList<String>();
        try {
            // 转化成日期类型
            Date startDate = sdf.parse(startTime);
            Date endDate = sdf.parse(endTime);

            //用Calendar 进行日期比较判断
            Calendar calendar = Calendar.getInstance();
            while (startDate.getTime() <= endDate.getTime()) {
                // 把日期添加到集合
                list.add(sdf.format(startDate));
                // 设置日期
                calendar.setTime(startDate);
                //把日期增加一天
                calendar.add(Calendar.DATE, 1);
                // 获取增加后的日期
                startDate = calendar.getTime();
            }
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return list;
    }

 

标签:sdf,获取,日期,startTime,年月日,endTime,Calendar
From: https://www.cnblogs.com/tangbang/p/16921508.html

相关文章