Here you can find the source of getTomorrowDate(Date date)
public static Date getTomorrowDate(Date date) throws ParseException
//package com.java2s; //License from project: Apache License import java.text.ParseException; import java.util.Date; public class Main { public static Date getTomorrowDate(Date date) throws ParseException { date = new Date(1000L * 60 * 60 * 24 + date.getTime()); return date; }/*from ww w . j a v a2s . c o m*/ }