我正在使用Struts2处理java项目,其中currentDate
是今天日期,而fromDate
用户输入Date.fromDate
日期应与{{1}相同或未来我编写了Future Date的代码,如何编写条件 fromDate应该等于currentDate 。
currentDate
答案 0 :(得分:0)
fromDate date应与currentDate相等或未来。
如何编写条件fromDate< = CurrentDate。
上面写的两个陈述都是相互冲突的。在您的措辞中,您说的是fromDate>=currentDate
但是当您提出fromDate < = CurrentDate
时,您告诉fromDate
应该在currentDate
之前或之前,
根据您的评论,您应该使用
if(fromDate.before(currentDate)){
addFieldError("fromDate","The from date should be future date");
}