Here you can find the source of endOfDay(Date date)
Parameter | Description |
---|---|
date | Date to calculate end of day from |
date
public static Date endOfDay(Date date)
//package com.java2s; /*//from w w w . j a v a 2 s . c om * $Id: DateUtils.java,v 1.1 2004/08/12 00:24:33 dmouse Exp $ * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ import java.util.*; public class Main { private static Calendar CALENDAR = Calendar.getInstance(); /** * Returns the last millisecond of the specified date. * * @param date Date to calculate end of day from * @return Last millisecond of <code>date</code> */ public static Date endOfDay(Date date) { Calendar calendar = CALENDAR; synchronized (calendar) { calendar.setTime(date); calendar.set(Calendar.HOUR_OF_DAY, 23); calendar.set(Calendar.MILLISECOND, 999); calendar.set(Calendar.SECOND, 59); calendar.set(Calendar.MINUTE, 59); return calendar.getTime(); } } }