如何检查日期对象是否等于昨天?java.time

2022-08-31 23:46:00

现在我正在使用这个代码

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的原因。提前感谢您的帮助!


答案 1
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日等日期。


答案 2

java.time

使用 Java 8 中内置的框架java.time

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

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

官方 Oracle 教程状态LocalDate

应使用等式方法进行比较。

如果您正在使用 LocalDateTime、ZonedDateTimeOffsetDateTime 等对象,则可以转换为 LocalDate

LocalDateTime.now().toLocalDate(); # 2015-11-24