Here you can find the source of yearformMatDate(Date date)
public static String yearformMatDate(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static SimpleDateFormat sydf = new SimpleDateFormat("yyyy"); public static String yearformMatDate(Date date) { return sydf.format(date); }//from w w w . ja v a2 s. c o m }