Here you can find the source of getYear(Date date)
public static int getYear(Date date)
//package com.java2s; import java.util.*; public class Main { public static Calendar calendar = new GregorianCalendar(); public static int getYear(Date date) { calendar.setTime(date);/*from w w w . ja v a2 s .co m*/ return calendar.get(Calendar.YEAR); } }