我正在使用GXT / ExtGWT。我有以下代码比较两个日期。
private DateField startDateField = new DateField();
private DateField endDateField = new DateField();
Date date = new Date();
CalendarUtil.addDaysToDate(date, -1);
startDateField.setValue(date);
endDateField.setValue(new Date());
Date fromDate = startDateField.getValue();
Date toDate = endDateField.getValue();
Date differenceBetweenDates = new Date(fromDate.getTime());
CalendarUtil.addMonthsToDate(differenceBetweenDates, 6);
if (differenceBetweenDates.before(toDate)) {
MessageBox.alert("Alert","Date range should not exceed six months", null);
return false;
} else{
return true;
}
此处在dateds fromdate中,我选择0012-12-30
,并将其视为0012-12-31
。
执行第differenceBetweenDates.before(toDate)
行时,我遇到异常。请帮我。我在这里做错了吗?
java.lang.ClassCastException: sun.util.calendar.JulianCalendar$Date cannot be cast to sun.util.calendar.Gregorian$Date
答案 0 :(得分:3)
根据http://www.docjar.com/html/api/java/util/Date.java.html,java.util.Date包含以下代码:
private static final BaseCalendar getCalendarSystem(long utc) {
// Quickly check if the time stamp given by `utc' is the Epoch
// or later. If it's before 1970, we convert the cutover to
// local time to compare.
if (utc >= 0
|| utc >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER
- TimeZone.getDefaultRef().getOffset(utc)) {
return gcal;
}
return getJulianCalendar();
}
所以在我看来,因为你把年份作为0012而不是2012年,所以选择了JulianCalendar。
答案 1 :(得分:1)
我遇到了同样的问题,但对于不同的用例(日期确实来自用户输入,但数据源是Excel表格)。
一个非常简单的解决方法为我做了诀窍:
private static boolean isBefore(Date firstDate, Date secondDate) {
return firstDate.getTime() < secondDate.getTime();
}
答案 2 :(得分:0)
您的日期解析存在一些问题。根据凯撒的朱利安历法,有人认为你打算代表时间!除非你是正统派,否则我怀疑这是意图。 endDateField
内部存在一些问题,即使用完全错误的日历操纵日期。