Here you can find the source of getYear()
public static String getYear()
//package com.java2s; import java.text.SimpleDateFormat; import java.util.*; public class Main { private final static SimpleDateFormat sdfYear = new SimpleDateFormat("yyyy"); public static String getYear() { return sdfYear.format(new Date()); }//from w w w. j ava 2 s .co m }