Here you can find the source of getYear(Date date)
public static String getYear(Date date)
//package com.java2s; import java.text.SimpleDateFormat; public class Main { public static String getYear(Date date) { return FormatDate(date, "yyyy"); }/*from www . j a v a 2 s . com*/ public static String FormatDate(Date date, String sf) { if (date == null) return ""; SimpleDateFormat dateformat = new SimpleDateFormat(sf); return dateformat.format(date); } }