Here you can find the source of year(Date date)
static int year(Date date)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { static SimpleDateFormat yearFormat = new SimpleDateFormat("yyyy"); static int year(Date date) { String year = yearFormat.format(date); return Integer.valueOf(year); }/*from w ww. j a v a2 s. c o m*/ }