Here you can find the source of getMonthLastDay()
public static String getMonthLastDay()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { public static String getMonthLastDay() { SimpleDateFormat sdf = new SimpleDateFormat("dd"); Calendar calendar = Calendar.getInstance(); calendar.set(Calendar.DAY_OF_MONTH, calendar.getActualMaximum(Calendar.DAY_OF_MONTH)); return sdf.format(calendar.getTime()); }//from w w w.j a va 2s. co m }