Link to home
Start Free TrialLog in
Avatar of sangameshrh
sangameshrh

asked on

Comparing Dates in JAVA

How to compare to dates of java.util.Date class in JAVA
ASKER CERTIFIED SOLUTION
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
And

boolean d1IsAfter = d1.after(d2);
boolean d1IsBefore = d1.before(d2);
..and of course

long millisecondsDiff = d1.getTime() - d2.getTime();
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Forced accept.

Computer101
EE Admin