您的位置:首页 > 其它

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

2016-06-08 11:52 302 查看
/**
* 判断当前日期是否在[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;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: