Here you can find the source of year(Calendar calendar)
public static int year(Calendar calendar)
//package com.java2s; //License from project: Open Source License import java.util.Calendar; public class Main { public static int year(Calendar calendar) { return calendar.get(Calendar.YEAR); }/*from w ww . ja v a 2 s . co m*/ public static int year() { return Calendar.getInstance().get(Calendar.YEAR); } }