Here you can find the source of getYear()
public static String getYear()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getYear() { String str = ""; final SimpleDateFormat sdf = new SimpleDateFormat("yyyy"); final Date date = new Date(); str = sdf.format(date);/*from w ww .jav a 2 s. c om*/ return str; } }