Here you can find the source of getYear(Date date)
public static String getYear(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getYear(Date date) { return new SimpleDateFormat("yyyy").format(date); }// www . j ava 2 s. c o m }