如果我输入当前日期,如果条件我得到日期差异(-1)。它应该为零

时间:2017-03-29 03:13:50

标签: oracle-adf

import oracle.jbo.domain.Date;

public Date getCurrentDateTime() {
        return new Date(new Timestamp(System.currentTimeMillis()));
}

public void Method(){
        eventstartDate = (oracle.jbo.domain.Timestamp)this.bndevtfromdate.getValue();
        eventendDate = (oracle.jbo.domain.Timestamp)this.bndevttodate.getValue();
        if (eventstartDate.compareTo(getCurrentDateTime()) < 0) {       
                showmessage("Start Date cannot be less than Today's Date", "I");
        }
}

我正在制作一个活动通告,其中没有人可以在今天的日期之前输入参加活动的日期。事件开始日期和事件结束日期是两个用作时间戳类变量的变量。

0 个答案:

没有答案