This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes how to determine if two Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "how to determine if two "Date" are same ?" Watch "how to determine if two "Date" are same ?" New topic
Author

how to determine if two "Date" are same ?

ben oliver
Ranch Hand

Joined: Mar 28, 2006
Posts: 369
If I create two java util Date objects, and set them to the same "real day", in JVM they are two different objects. But how do I tell if they actually contain the same "actual real day" ?
fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 10040
    
    6

how about trying the equals() method of the Date class?


Never ascribe to malice that which can be adequately explained by stupidity.
Paul Beckett
Ranch Hand

Joined: Jun 14, 2008
Posts: 96
the equals method tests equality right down to the millisecond.

I've just been doing some date/time calculations recently and remembered very quickly how much of a pain the standard java implementations are.

If you are ok using other API's then something like DateUtils from apache commons lang may be of use. It contains an "isSameDay" method.

Other than that you will probably need to use the java.util.Calendar to produce a Date with the non relevant fields (hour/minute/second/millisecond) all set to zero. Then you should be able to do an equals comparison on your 2 'day only' dates.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: how to determine if two "Date" are same ?
 
Similar Threads
Short/Long day?
basic calendar questions
calculating times (please help!!)
about subtract dates
How to calculate two date