Say I've got two dates formatted this way:
date1 = Feb 22, 2011
date2 = Mon Feb 21 08:30:03 EST 2011 (default formatting)
will date2.compareTo(date1); still work?
I've got a method I'm using to see if certain date values are the same, but its not working. One date is formatted a certain way, and I think this might be problem.
Any insight would be helpful.
Dateinstances or twoStringinstances? TheDatedoesn't store any information about formatting. All it stores is the epoch time in milliseconds. TheStringin turn knows nothing about the specific information it contains, such as a date representation, the comparison just depends on the natural language rules. – BalusC Feb 28 '11 at 2:10