Here you can find the source of getStrThisMonth()
public static String getStrThisMonth()
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { public static String getStrThisMonth() { SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMM"); Calendar cd = Calendar.getInstance(); return simpleDateFormat.format(cd.getTime()); }//from w ww . ja va 2s. c o m }