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

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

时间:2016-06-08 12:13:02      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

    /**
     * 判断当前日期是否在[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]区间

标签:

原文地址:http://www.cnblogs.com/linjiqin/p/5569601.html

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