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 not sure what I'm doing wrong, but I've got a piece of code which calculates the number of days between two dates, and which looks something like the following:

final Calendar first = new GregorianCalendar(2010, Calendar.OCTOBER, 1);
final Calendar last = new GregorianCalendar(2010, Calendar.NOVEMBER, 1);

final long difference = last.getTimeInMillis() - first.getTimeInMillis();
final long days = difference / (1000 * 60 * 60 * 24);

System.out.println("difference: " + difference);
System.out.println("days: " + days);

To summarise, the code block above calculates the number of days between 1st October 2010 and 1 November 2010. I'm expecting to see it return 31 days (seeing as there's 31 days in October)

difference: xxxx
days: 31

but instead it's showing 30 days in October!

difference: 2674800000
days: 30

I've managed to narrow it down to between the the dates 2 October 2010 and 3 October 2010, which seems to only have 82800000 milliseconds, instead of a full 86400000 milliseconds (exactly one hour missing).

Does anyone have any ideas what I'm doing wrong? Or is the 2nd October a special date which has one minute less than a regular day?

share|improve this question
4  
please edit the code to replace 9 and 10 with the month constants. This keeps confusing people here. – Thilo Dec 17 '10 at 6:30
Ah right, yep cheers, I think someone already edited it – jklp Dec 19 '10 at 9:01

4 Answers

up vote 9 down vote accepted

(86400000 - 82800000)/1000 = 3600, which is one hour. You're seeing daylight savings time, combined with the rounding of integer math

You could get around it by doing the calculations with floating point numbers and rounding at the end, or you could check out a library like Joda time which offers much better date math than what's built in.

share|improve this answer
According to timeanddate.com/time/dst/2010b.html the 2nd of October is the changing day in parts of Australia. – Hendrik Brummermann Dec 17 '10 at 6:32

You may be better off comparing the year and day or year instead of the milliseconds that pass in a day.

 int lastYear= last.get(Calendar.YEAR);
 int firstYear= first.get(Calendar.YEAR);
 int lastDayofYear = last.get(Calendar.DAY_OF_YEAR);
 int firstDayofYear = first.get(Calendar.DAY_OF_YEAR);
 int nDaysElapse = lastDayofYear - firstDayofYear;
 int nYearsElapse = lastYear- firstYear;
 int days = (nYearsElapse*365)+nDaysElapse;
share|improve this answer

You should read this post to get a better understanding of how Calendar is interrelated with date/time stamps.

Having read that site, my initial questions were:

What do you mean by days? Do you mean '24-hour blocks' or do you mean calendar days? In the same vein, do you care if you are off slightly due to daylight savings etc?

If you mean Calendar days, your best bet is probably to:

final Calendar first = new GregorianCalendar(2010, 9, 1);
final Calendar last = new GregorianCalendar(2010, 10, 1);

Calendar difference = Calendar.getInstance();
difference.setTimeInMillis(last.getTimeInMillis() - first.getTimeInMillis());

int numDays = difference.get(Calendar.DAY_OF_YEAR) - difference.getMinimum(Calendar.DAY_OF_YEAR);

Of course, the above code will only work if the number of days < 365. You will need to create a rolling calculation e.g.

int yearDiff = last.get(Calendar.YEAR) - first.get(Calendar.YEAR);
Calendar tmp = new GregorianCalendar();
tmp.setTimeInMillis(first.getTimeInMillis());
for(int i = 0; i < yearDiff; i++) {
  numDays += tmp.getActualMaximum(Calendar.DAY_OF_YEAR);
  i++;
  tmp.add(Calendar.YEAR, 1);
}

This should allow you to get the number of days in a correct and consistent manner, without worrying about Daylight Savings, Leap Years etc.

That said, JodaTime probably has this functionality built in.

share|improve this answer

The code you put in your post is calculating the time between September 1 and October 1, not October 1 and November 1. The output is correct for the code you posted.

share|improve this answer
3  
Month value is 0-based. e.g., 0 for January. – Brad Mace Dec 17 '10 at 6:24

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.