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 int getYear(Date date) { return getCalendar(date).get(Calendar.YEAR); }/*from www . ja v a2s . c om*/ public static Calendar getCalendar(Date date) { Calendar calendar = Calendar.getInstance(); calendar.setTime(date); return calendar; } }