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.

link|improve this question

feedback

7 Answers

up vote 29 down vote accepted
int year = Calendar.getInstance().get(Calendar.YEAR);

Not sure if this meets with the criteria of not setting up a new Calendar? (Why the opposition to doing so?)

link|improve this answer
Upon seeing your answer, Calendar would be a fine object to use. I was looking for a one-liner and I didn't think Calendar would have that for me. Proven wrong I am! Thanks! – KG. Sep 25 '08 at 22:03
feedback

This simplest (using Calendar, sorry) is:

 int year = Calendar.getInstance().get(Calendar.YEAR);

There is also the new Date and Time API JSR, as well as Joda Time

link|improve this answer
feedback

You can do the whole thing using Integer math without needing to instantiate a calendar:

return (System.currentTimeMillis()/1000/3600/24/365.25 +1970);

May be off for an hour or two at new year but I don't get the impression that is an issue?

link|improve this answer
feedback

If your application is making heavy use of Date and Calendar objects, you really should use Joda Time, because java.util.Date is mutable. java.util.Calendar has performance problems when its fields get updated, and is clunky for datetime arithmetic.

link|improve this answer
feedback

If you want the year of any date object, I used the following method:

public static int getYearFromDate(Date date) {
    int result = -1;
    if (date != null) {
        Calendar cal = Calendar.getInstance();
        cal.setTime(date);
        result = cal.get(Calendar.YEAR);
    }
    return result;
}
link|improve this answer
feedback

The easiest way is to get the year from Calendar.

// year is stored as a static member
int year = Calendar.getInstance().get(Calendar.YEAR);
link|improve this answer
Calendar.YEAR is not the current year. – toolkit Sep 25 '08 at 22:00
Calendar.YEAR is defined thus... public final static int YEAR = 1; – cagcowboy Sep 25 '08 at 22:01
The get() API on Calendar gets the datum that is at the field specified by the constant. The year is located in the 1's field in the Calendar object! Calendar.getInstance() is getting the current date. java.sun.com/j2se/1.4.2/docs/api/java/util/…) – Bob King Sep 25 '08 at 22:08
feedback

I use special functions in my library to work with days/month/year ints -

int[] int_dmy( long timestamp ) // remember month is [0..11] !!!
{
  Calendar cal = new GregorianCalendar(); cal.setTimeInMillis( timestamp );
  return new int[] { 
    cal.get( Calendar.DATE ), cal.get( Calendar.MONTH ), cal.get( Calendar.YEAR )
  };
};


int[] int_dmy( Date d ) { 
 ...
}
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.