Here you can find the source of getThisYear()
public static String getThisYear()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; public class Main { public static SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd"); public static String getThisYear() { String dateString = ""; java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("yyyy"); java.util.Date currentTime_1 = new java.util.Date(); dateString = formatter.format(currentTime_1); return dateString; }/*from www . jav a 2s . c o m*/ }