Here you can find the source of getMonthBegin(String strdate)
public static String getMonthBegin(String strdate)
//package com.java2s; //License from project: Open Source License public class Main { public static String getMonthBegin(String strdate) { return strdate; /*//from w w w . j a v a 2s . c o m * date = parseDate(strdate); return format(date, "yyyy-MM") + "-01"; */ } }