Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm retrieving two timestamps from a database (check_in and check_out). I need to compare the two to find out how many days have passed between the two timestamps. How can this be done in Java?

share|improve this question
possible duplicate of how to calculate difference between two dates using java – Jon Skeet Aug 17 '10 at 19:39

2 Answers

Just subtract check_out and check_in, and convert from whatever units you're in to days. Something like

//pseudo-code
diff_in_millis = Absolute Value Of ( check_out - check_in ) ;

diff_in_days = (diff_in_millis / 1000 ) * 60 * 60 * 24;
share|improve this answer
This had given me some headache if the two timestamps come from different hosts. A few millis difference on a day border (12:00) can lead to different values. – yottamoto Feb 5 at 12:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.