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

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

 

posted @ 2016-10-12 18:57  神经质攻城狮马磊  阅读(311)  评论(0编辑  收藏  举报