码迷,mamicode.com
首页 > 其他好文 > 详细

判断当前日期是否在[startDate, endDate]区间工具类

时间:2018-01-21 12:31:17      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:nbsp   bool   日期   author   gpo   als   turn   time()   判断   

/**
     * 判断当前日期是否在[startDate, endDate]区间
     * 
     * @param startDate 开始日期
     * @param endDate 结束日期
     * @author jqlin
     * @return
     */
    public static boolean isEffectiveDate(Date startDate, Date endDate){
        if(startDate == null || endDate == null){
            return false;
        }
        
        long currentTime = new Date().getTime();
        if(currentTime >= startDate.getTime() 
                && currentTime <= endDate.getTime()){
            return true;
        }
        
        return false;
    }

 

判断当前日期是否在[startDate, endDate]区间工具类

标签:nbsp   bool   日期   author   gpo   als   turn   time()   判断   

原文地址:https://www.cnblogs.com/javahr/p/8323524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!