Here you can find the source of monthformMatDate(Date date)
public static String monthformMatDate(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static SimpleDateFormat smdf = new SimpleDateFormat("yyyyMM"); public static String monthformMatDate(Date date) { return smdf.format(date); }//w ww. j a va 2s. c o m }