I need to determine the current year in Java as an integer. I would like to be able to use this value as a counter that I can, for example, use to run from now until a specified year in the past (i.e. my value starts at 2008, and I have a "firstYearOfData" value that is set to 1994. I can now run my process from 2008 back to 1994). I could just use java.util.Date(), but it is deprecated.
|
feedback
|
Not sure if this meets with the criteria of not setting up a new Calendar? (Why the opposition to doing so?) | |||
feedback
|
|
This simplest (using Calendar, sorry) is:
There is also the new Date and Time API JSR, as well as Joda Time | |||
|
feedback
|
|
You can do the whole thing using Integer math without needing to instantiate a calendar:
May be off for an hour or two at new year but I don't get the impression that is an issue? | |||
|
feedback
|
|
If your application is making heavy use of Date and Calendar objects, you really should use Joda Time, because | |||
|
feedback
|
|
If you want the year of any date object, I used the following method:
| |||
|
feedback
|
|
The easiest way is to get the year from Calendar.
| |||||||
feedback
|
|
I use special functions in my library to work with days/month/year ints -
| |||
|
feedback
|