首页
IT
登录
6mi
u
盘
搜
搜 索
IT
判断当前日期是否在[startDate, endDate]区间
判断当前日期是否在[startDate, endDate]区间
xiaoxiao
2025-08-07
7
/**
* 判断当前日期是否在[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
; }
转载请注明原文地址: https://ju.6miu.com/read-1301495.html
最新回复
(
0
)