Java tutorial
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { public static int getYear() { Calendar now = Calendar.getInstance(); return now.get(Calendar.YEAR); } }