如何比较两个日历日期?

时间:2014-01-08 12:45:51

标签: java date calendar comparison

我有一个Java问题,我需要检查项目是否已过期。这应该检查项目是否至少是x(x是一个整数,并且可以设置为任何整数值)几个月。

只是为了重新声明假设我有一包鸡蛋,我想检查自添加它们以来是否已经过了1个月(dateAdded)。

我写了一个简单的比较,但它似乎没有给出正确的答案。这是代码。

public Boolean isEndOfLine() {
    Calendar today = Calendar.getInstance();
    if(today.compareTo(dateAdded) >= END_OF_LINE) {
        return true;
    } else {
        return false;
    }
}

行尾的值是整数12,即12个月。

5 个答案:

答案 0 :(得分:2)

我没有把javadoc放在脑子里,而是按照以下方式进行:

dateAdded.add(Calendar.Month, END_OF_LINE).compareTo(today) > 0

答案 1 :(得分:1)

这是一些类似的示例代码,但使用Joda-Time 2.3库。

供参考:

  • Joda-Time DateTime实例知道自己的时区。
  • minusMonths方法很聪明,处理Daylight Saving Time和其他问题。您可能希望阅读其源代码,以验证其逻辑遵循您的业务规则,以确定“x个月前”的含义。
// © 2013 Basil Bourque. This source code may be used freely forever by anyone taking full responsibility for doing so.
// import org.joda.time.*;
// import org.joda.time.format.*;

// Better to specify a time zone explicitly rather than rely on default.
// Time Zone list… http://joda-time.sourceforge.net/timezones.html  (not quite up-to-date, read page for details)
DateTimeZone timeZone = DateTimeZone.forID( "Europe/Paris" );

int countMonths = 2;

DateTime now = new DateTime( timeZone );
// If you want to include the entire day, get first moment of the day by calling "withTimeAtStartOfDay".
DateTime someMonthsAgo = now.minusMonths( countMonths ).withTimeAtStartOfDay();
DateTime dateAdded = new DateTime( 2013, 5, 6, 7, 8, 9, timeZone  ); // Arbitrary values for example.

// If 'dateAdded' happened prior to our target date-time 'someMonthsAgo', the pack of eggs is expired.
Boolean isEndOfLine = dateAdded.isBefore( someMonthsAgo );

转储到控制台...

System.out.println( "now: " + now );
System.out.println( "someMonthsAgo: " + someMonthsAgo );
System.out.println( "dateAdded: " + dateAdded );
System.out.println( "isEndOfLine: " + isEndOfLine );

跑步时......

now: 2014-01-08T21:36:11.179+01:00
someMonthsAgo: 2013-11-08T00:00:00.000+01:00
dateAdded: 2013-05-06T07:08:09.000+02:00
isEndOfLine: true

答案 2 :(得分:0)

Calendar docs 中所述 你不应该依赖compareTo返回的数字 - 你只要知道如果它大于0则原始日期更大。

因此,创建一个新日期(传递中的x个月)并与该日期进行比较。

答案 3 :(得分:0)

如果参数表示的时间等于此Calendar对象表示的时间,则该方法返回0;如果此日历的时间早于参数表示的时间,则小于0的值;或者小于0的值;如果此日历的时间在所代表的时间之后,则为大于0的值。

    import java.util.*;

    public class CalendarDemo {

       public static void main(String[] args) {

          // create two calendar at the different dates
          Calendar cal1 = new GregorianCalendar(2015, 8, 15);
          Calendar cal2 = new GregorianCalendar(2008, 1, 02);

          // compare the time values represented by two calendar objects.
          int i = cal1.compareTo(cal2);

          // return positive value if equals else return negative value
          System.out.println("The result is :"+i);

          // compare again but with the two calendars swapped
          int j = cal2.compareTo(cal);

          // return positive value if equals else return negative value
          System.out.println("The result is :" + j);

       }
    }

答案 4 :(得分:0)

这是工作解决方案。经过JUNIT测试以确认结果。

public Boolean isEndOfLine() {
    Calendar today = Calendar.getInstance();
    today.add(Calendar.MONTH, -END_OF_LINE);
    return today.compareTo(dateAdded) >= 0;
}

我使用add方法从今天开始减去END_OF_LINE。注意第3行的减号。然后进行比较,看它是否大于0.感谢您的所有建议。