Here you can find the source of getLastDay(Date date)
public static Date getLastDay(Date date)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static Date getLastDay(Date date) { Calendar c = Calendar.getInstance(); c.setTime(date);// ww w. j a v a 2s . c o m c.set(Calendar.DATE, c.get(Calendar.DATE) + 1); return c.getTime(); } }