I need to determine the current year in Java as an integer. I could just use java.util.Date(), but it is deprecated.
java.util.Date()
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?)
2.1m questions
2.1m answers
60 comments
57.0k users