常用的日期之间的操作

    /**
     * 判断日期是否为月末
     * <p><b>修改人:</b><br>&nbsp;&nbsp; 2019年11月27日 14:44:59<br>
     */
    private static boolean isLastMonthDay(Date date) {
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(date);
        calendar.set(Calendar.DATE, (calendar.get(Calendar.DATE) + 1));
        if (calendar.get(Calendar.DAY_OF_MONTH) == 1) {
            return true;
        } else {
            return false;
        }

    }
    /**
     * 判断日期是否在时间区间内
     * <p><b>修改人:</b><br>&nbsp;&nbsp; 2019年11月27日 15:02:46<br>
     * @return
     */
    private static   boolean isEffectiveDate(Date nowTime) {
      Map<String,Date> map =   getMonthTimeInterval();
       if (nowTime.getTime() == map.get("startDate").getTime()
                || nowTime.getTime() == map.get("endDate").getTime()) {
            return true;
        }

        Calendar date = Calendar.getInstance();
        date.setTime(nowTime);

        Calendar begin = Calendar.getInstance();
        begin.setTime(map.get("startDate"));

        Calendar end = Calendar.getInstance();
        end.setTime(map.get("endDate"));
        if (date.after(begin) && date.before(end)) {
            return true;
        } else {
            return false;
        }
    }
    /**
     * 当前月的区间
     * <p><b>修改人:</b><br>&nbsp;&nbsp; 2019年11月27日 15:20:23<br>
     * @return map
     */
    private static Map<String,Date>  getMonthTimeInterval() {
        String firstday, lastday;
        Map<String,Date>map  = new HashMap<>();
        // 获取当月的第一天
        Calendar cale = null;
        cale = Calendar.getInstance();
        cale = Calendar.getInstance();
        cale.add(Calendar.MONTH, 0);
        cale.set(Calendar.DAY_OF_MONTH, 1);
        firstday = dateFormt.format(cale.getTime());
        // 获取当月的最后一天
        cale = Calendar.getInstance();
        cale.add(Calendar.MONTH, 1);
        cale.set(Calendar.DAY_OF_MONTH, 0);
        lastday = dateFormt.format(cale.getTime());
        try {
           Date startDate =  dateFormt.parse(firstday);
           Date endDate =  dateFormt.parse(lastday);
            map.put("startDate",startDate);
            map.put("endDate",endDate);
        }catch (Exception e){
            e.printStackTrace();
        }
       return map;
    }
    /**
     * 日期差
     * <p><b>修改人:</b><br>&nbsp;&nbsp; 2019年11月14日 11:58:02<br>
     * @param startTime 开始
     * @param  endTime 结束
     * @return
     */
    public static int getDistanceTime(Date startTime, Date endTime) {
        int days = 0;
        long time1 = startTime.getTime();
        long time2 = endTime.getTime();

        long diff = time1 - time2;

        days = (int) (diff / (24 * 60 * 60 * 1000));
        return days;
    }

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值