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

How do I find the difference in Days between two DateTime instances? with difference in days I mean if start is on Monday and end is on Tuesday I expect a return value of 1 regardless the hour/minute/seconds of the start and end dates.

Days.daysBetween(start, end).getDays() gives me 0 if start is in the evening and end in the morning.

Edit: I'm also having the same issue with other date fields so I was hoping there would be a generic way to 'ignore' the fields of lesser significance.

In other words, the months between Feb and 4 march would also be 1, as would the hours between 14:45 and 15:12 be. However the hour difference between 14:01 and 14:55 would be 0

share|improve this question

2 Answers

This should work:

Days.daysBetween(start.toDateMidnight() , end.toDateMidnight() ).getDays() 
share|improve this answer

you can use DateMidnight:

Days.DaysBetween(new DateMidnight(start), new DateMidnight(end)).getDays() 
share|improve this answer

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.