46

现在我正在使用这段代码

Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DATE) - 1, 12, 0, 0); //Sets Calendar to "yeserday, 12am"
if(sdf.format(getDateFromLine(line)).equals(sdf.format(cal.getTime())))                         //getDateFromLine() returns a Date Object that is always at 12pm
{...CODE

必须有一种更流畅的方法来检查 getdateFromLine() 返回的日期是否是昨天的日期。重要的是日期,而不是时间。这就是我使用 SimpleDateFormat 的原因。提前感谢您的帮助!

4

8 回答 8

91
Calendar c1 = Calendar.getInstance(); // today
c1.add(Calendar.DAY_OF_YEAR, -1); // yesterday

Calendar c2 = Calendar.getInstance();
c2.setTime(getDateFromLine(line)); // your date

if (c1.get(Calendar.YEAR) == c2.get(Calendar.YEAR)
  && c1.get(Calendar.DAY_OF_YEAR) == c2.get(Calendar.DAY_OF_YEAR)) {

这也适用于 1 月 1 日这样的日期。

于 2010-06-09T13:50:01.540 回答
24

java.time

使用java.timeJava 8 内置的框架

LocalDate now = LocalDate.now(); //2015-11-24
LocalDate yesterday = LocalDate.now().minusDays(1); //2015-11-23

yesterday.equals(now); //false
yesterday.equals(yesterday); //true

官方 OracleLocalDate 教程状态

应该使用equals方法进行比较。

如果您正在使用 、 或 等对象LocalDateTimeZonedDateTimeOffsetDateTime可以转换为LocalDate.

LocalDateTime.now().toLocalDate(); # 2015-11-24
于 2015-11-24T11:59:46.513 回答
14

我同意 Ash Kim 的观点,如果你想保持理智, Joda-Time图书馆是必经之路。

import org.joda.time.DateTime;

public static boolean dayIsYesterday(DateTime day) {
    DateTime yesterday = new DateTime().withTimeAtStartOfDay().minusDays(1);
    DateTime inputDay = day.withTimeAtStartOfDay();

    return inputDay.isEqual(yesterday);
}

在此示例中,如果 DateTimeday来自昨天,dayIsYesterday(day)则将返回true

于 2011-03-23T21:51:25.547 回答
9
于 2014-06-13T20:48:38.210 回答
3

而不是设置日历试试这个:

public static void main(String[] args) {
    int DAY_IN_MILLIS = 1000 * 60 * 60 * 24;
    Date date = new Date();
    SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yy");
    String prevDate = dateFormat.format(date.getTime() - DAY_IN_MILLIS);
    String currDate = dateFormat.format(date.getTime());
    String nextDate = dateFormat.format(date.getTime() + DAY_IN_MILLIS);
    System.out.println("Previous date: " + prevDate);
    System.out.println("Current date: " + currDate);
    System.out.println("Next date: " + nextDate);
  }

这应该允许您沿着日历向前和向后移动

然后您可以简单地将 getDateFromLine(line) 与 prevDate 值或您喜欢的任何值进行比较。

于 2010-06-09T13:29:29.870 回答
1

大致是这样的:

         Calendar c1 = Calendar.getInstance();
         Date d1 = new Date(/* control time */);
         c1.setTime(d1);

        //current date
        Calendar c2 = Calendar.getInstance();

        int day1=c1.get(Calendar.DAY_OF_YEAR);
        int day2=c2.get(Calendar.DAY_OF_YEAR);

       //day2==day1+1 
于 2010-06-09T13:45:43.133 回答
1

当我使用这种方式来测试这个方法时,我发现它有点混乱

 Calendar now = new GregorianCalendar(2000, 1, 1);
 now.add(Calendar.DATE, -1);

 SimpleDateFormat format= new SimpleDateFormat("yyyy-MM-dd");
 System.out.println(format.format(now.getTime()));

我的期望是打印1999-12-31,但实际是2001-1-31 我猜 Calendar.add() 只处理每月的一天。

但实际的错误是我创建日历对象的方式。在 Calendar 中,月份从0开始,变量现在的值是 2001-2-1,我很自负没有打印它。当我发现有问题时。创建日历的正确方法是:

 Calendar now = new GregorianCalendar(2000, Calendar.JANUARY, 1);

对于前 C# 程序员来说,日历太奇怪了 :(

于 2015-04-17T06:01:31.843 回答
0

随意重用这些扩展方法。他们深受这篇帖子答案的影响。谢谢大家,顺便说一句!

fun Date.isSameDay(other: Date): Boolean {
    val thisCalendar = Calendar.getInstance()
    val otherCalendar = Calendar.getInstance()
    thisCalendar.time = this
    otherCalendar.time = other
    return thisCalendar.get(Calendar.YEAR) == otherCalendar.get(Calendar.YEAR)
            && thisCalendar.get(Calendar.DAY_OF_YEAR) == otherCalendar.get(Calendar.DAY_OF_YEAR)
}

fun Date.isYesterday(other: Date): Boolean {
    val yesterdayCalendar = Calendar.getInstance()
    yesterdayCalendar.time = other
    yesterdayCalendar.add(Calendar.DAY_OF_YEAR, -1)

    return yesterdayCalendar.time.isSameDay(this)
}
于 2020-07-27T15:00:08.237 回答