Here you can find the source of getThisMonth()
public static String getThisMonth()
//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 getThisMonth() { String dateString = ""; java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("MM"); java.util.Date currentTime_1 = new java.util.Date(); dateString = formatter.format(currentTime_1); return dateString; }// w w w. ja v a 2 s.c o m }