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.
| |||
|
feedback
|
|
The | |||||||||||||||
feedback
|
|
You exact use case might be best solved with Joda and this specific example. | |||
|
feedback
|
|
For DateTime calculations I highly recommend using the JodaTime library. For what you need, in particular, it would be a one liner:
I hope this helps. | |||||
feedback
|
|
You can look at the Wikipedia page for some very nice pseudocode:
I'm sure you can figure out how to implement that logic in Java. :-) | |||||||||
feedback
|
|
You can use the TimeUnit class. For your specific needs this should do:
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 | |||
|
feedback
|