Here you can find the source of getYear(Calendar calendar)
static public int getYear(Calendar calendar)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { static public int getYear(Calendar calendar) { return calendar.get(Calendar.YEAR); }//w w w . j a v a2 s . co m }