Here you can find the source of getYear()
public static int getYear()
//package com.java2s; import java.util.*; public class Main { public static int getYear() { Calendar mycd = Calendar.getInstance(); return mycd.get(Calendar.YEAR); }//from w w w. jav a 2 s . c o m }