Is there any handy method built in Java to calculate how many days were/will be in a specific year (as in was it a long (366 days) or short (365 days) year)?
Or do I need to write it myself?
I'm calculating a remainder of days from one day to another (you could say for example 'how many days left until my birthday'), and I want to take into account the Feb. 29. I have it all done except that 29th.

link|improve this question

50% accept rate
feedback

6 Answers

up vote 9 down vote accepted

The GregorianCalendar standar class has an isLeapyear() method. If all you've got is a year number (say, 2008), then construct a date using this constructor, and then check the isLeapYear() method afterwards.

link|improve this answer
2  
Bah. Stupid Java and its libraries for EVERYTHING. :-P (+1) – Platinum Azure Jan 24 '11 at 21:48
1  
Yeah, using libraries for dates SUCKS. Passing your own tests for leap years, varying months, leap seconds, additive math is the way to... nevermind. :) – Jeff Ferland Jan 24 '11 at 21:56
But, then you can easily just define the "MyCalendar" as being the new standard, and it'd magically pass all relevant tests. – Marc B Jan 24 '11 at 21:57
@Autocracy: Only the built-in date libraries suck. Ask Jon Skeet about it. – Gabe Jan 24 '11 at 22:13
Yeah, I wrote this in late evening and I forgot to mention that I'm using the Calendar class and the Calendar.get(Calendar.DAY_OF_YEAR) to calculate the difference. I have only one doubt - if I do, for example, Calendar.add(Calendar.MONTH, 14) will it set the resulting year as a leap year if it is one? Or all years have only 365 days there? – jurchiks Jan 25 '11 at 9:22
show 2 more comments
feedback

You exact use case might be best solved with Joda and this specific example.

link|improve this answer
feedback

For DateTime calculations I highly recommend using the JodaTime library. For what you need, in particular, it would be a one liner:

Days.daysBetween(date1, date2).getDays();

I hope this helps.

link|improve this answer
+1 for adding obligatory Joda-Time answer – ILMTitan Jan 24 '11 at 22:27
Not interested in implementing a whole library just for doing one simple calculation. – jurchiks Jan 25 '11 at 9:18
feedback

You can look at the Wikipedia page for some very nice pseudocode:

if year modulo 400 is 0
       then is_leap_year
else if year modulo 100 is 0
       then not_leap_year
else if year modulo 4 is 0
       then is_leap_year
else
       not_leap_year

I'm sure you can figure out how to implement that logic in Java. :-)

link|improve this answer
That looks like re-inventing the wheel. – Waldheinz Jan 24 '11 at 21:49
Yes, agreed, this is before I knew about Java's GregorianCalendar class. Java's MANY other date/time issues aside, that's the way to go in this case! – Platinum Azure Jan 24 '11 at 21:50
why the down-vote? This is "the" algorithm to find leap year. – Cem Catikkas Jan 25 '11 at 19:04
@Cem Catikkas: It's definitely correct, but the question is "was it a helpful answer". This is a Java question, so I can see an argument for using Java libraries being a better answer and reinventing the wheel being bad. Thanks for the upvote though! :-) – Platinum Azure Jan 25 '11 at 19:11
feedback

You can use the TimeUnit class. For your specific needs this should do:

public static int daysBetween(Date a, Date b) {
    final long dMs = a.getTime() - b.getTime();
    return TimeUnit.DAYS.convert(dMs, TimeUnit.MILLISECONDS);
}

Honestly, I don't see where leap years play any role in this calculation, though. Maybe I missed some aspect of your question?

Edit: Stupid me, the leap years magic happens in the Date.getTime(). Anyway, you don't have to deal with it this way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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