Here you can find the source of getStringOfFirstDayInMonth()
public static String getStringOfFirstDayInMonth()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getStringOfFirstDayInMonth() { Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM"); String temp = sdf.format(date); String firstDayInMoth = ""; firstDayInMoth = temp + "-01"; return firstDayInMoth; }// w ww .j a v a2s . c om }