Here you can find the source of getYear()
public static int getYear()
//package com.java2s; import java.util.Calendar; public class Main { public static int getYear() { return Calendar.getInstance().get(Calendar.YEAR); }//w ww . j a v a2 s.c o m }