Java tutorial
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { /** * Set the last day of the month * @param c Calendar */ public static void setLastDayMonth(Calendar c) { c.add(Calendar.MONTH, 1); c.add(Calendar.DAY_OF_YEAR, -1); } }