Here you can find the source of getThisMonthDate()
public static String getThisMonthDate()
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getThisMonthDate() { Date now = new Date(); SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/"); return dateFormat.format(now) + "01 00:00:00"; }//from w w w. jav a2 s .c o m }