Here you can find the source of getYearOfTime(Long time)
public static Integer getYearOfTime(Long time)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { public static Integer getYearOfTime(Long time) { Calendar cal = Calendar.getInstance(); cal.setTimeInMillis(time);// ww w. ja va2 s . c o m return cal.get(Calendar.YEAR); } }