java - compare two date values for the month and y

2020-03-06 02:14发布

I have a requirement to match two dates and if their month/year are same, i should return true, otherwise false. Based on my search, i found the following solution. Is there any other better way to do this comparison?.

Calendar cal1 = Calendar.getInstance();
    Calendar cal2 = Calendar.getInstance();
    cal1.setTime(date1);
    cal2.setTime(date2);
    boolean sameDay = cal1.get(Calendar.YEAR) == cal2.get(Calendar.YEAR) &&
                      cal1.get(Calendar.MONTH) == cal2.get(Calendar.MONTH);

2条回答
爷、活的狠高调
2楼-- · 2020-03-06 02:20

tl;dr

match two dates and if their month/year are same

Is there any other better way to do this comparison?

Yes, the better way uses the modern java.time classes.

YearMonth.from(                                   // Represent the year-month without a day-of-month, without a time-of-day, and without a time zone.
    LocalDate.of( 2018 , Month.JANUARY , 23 ) ,   // Represent a date-only, without a time-of-day and without a time zone.
)                                                 // Returns a `YearMonth` object.
.equals(                                          // Compare one `YearMonth` object to another.
    YearMonth.now()                               // Capture today’s year-month as seen in the JVM’s current default time zone.
)

Details

Yes, there is a better way.

You are using old date-time classes bundled with the earliest versions of Java. These classes have proven to be poorly designed, confusing, and troublesome. Avoid them, including java.util.Date.

java.time

Those old classes have been supplanted by the java.time framework built into Java 8 and later.

Instant

Convert the given java.util.Date objects to Instant objects, a moment on the timeline in UTC.

Instant i1 = myJavaUtilDate1.toInstant();
Instant i2 = myJavaUtilDate2.toInstant();

We are aiming to get to YearMonth objects as you only care about the year and the month. But to get there we need to apply a time zone. The year and the month only have meaning in the context of a specific time zone, and unless you are from Iceland I doubt you want the year/month context of UTC.

ZoneId

So we need to specify the desired/expected time zone (ZoneId).

ZoneId zoneId = ZoneId.of( "America/Montreal" );

ZonedDateTime

Apply that time zone to each Instant, producing ZonedDateTime objects.

ZonedDateTime zdt1 = ZonedDateTime.ofInstant( i1 , zoneId );
ZonedDateTime zdt2 = ZonedDateTime.ofInstant( i2 , zoneId );

YearMonth

Now extract YearMonth objects.

YearMonth ym1 = YearMonth.from( zdt1 );
YearMonth ym2 = YearMonth.from( zdt2 );

Compare.

Boolean same = ym1.equals( ym2 );

By the way, you likely have other business logic involving the year and month. Remember that the java.time classes are built into Java now. So you can use and pass YearMonth objects throughout your code base rather than re-calculating or passing strings.


About java.time

The java.time framework is built into Java 8 and later. These classes supplant the troublesome old legacy date-time classes such as java.util.Date, Calendar, & SimpleDateFormat.

The Joda-Time project, now in maintenance mode, advises migration to the java.time classes.

To learn more, see the Oracle Tutorial. And search Stack Overflow for many examples and explanations. Specification is JSR 310.

You may exchange java.time objects directly with your database. Use a JDBC driver compliant with JDBC 4.2 or later. No need for strings, no need for java.sql.* classes.

Where to obtain the java.time classes?

The ThreeTen-Extra project extends java.time with additional classes. This project is a proving ground for possible future additions to java.time. You may find some useful classes here such as Interval, YearWeek, YearQuarter, and more.

查看更多
3楼-- · 2020-03-06 02:25

You can use date1.getYear() == date2.getYear() && date1.getMonth() == date2.getMonth()

查看更多
登录 后发表回答