Here you can find the source of year(Calendar date)
public static int year(Calendar date)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { public static int year(Calendar date) { return date.get(Calendar.YEAR); }// www. j a v a 2 s. c o m }