Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Java Date object containing date and time information, e.g. 2008-01-01 13:15:00. I want to write a method that cuts off the time information so I only have the date left, e.g. 2008-01-01 00:00:00.

Do you have a tip? I tried doing something like this

(timestamp / (24 * 60 * 60 * 1000)) * (24 * 60 * 60 * 1000)

but I ran into problems with the timezone...

Thanks for your help!

Marco

share|improve this question

10 Answers

up vote 39 down vote accepted

The recommended way to do date/time manipulation is to use a Calendar object:

Calendar cal = Calendar.getInstance(); // locale-specific
cal.setTime(dateObject);
cal.set(Calendar.HOUR_OF_DAY, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
long time = cal.getTimeInMillis();
share|improve this answer
getTimeInMillis – kishi Dec 15 '09 at 16:33
@cletus, Is it possible to remove the time from Date object. I want pure date like 2008-01-01 no time portion. – Prem Mar 22 '12 at 4:06

Have you looked at the DateUtils truncate method in Apache Commons Lang?

Date truncatedDate = DateUtils.truncate(new Date(), Calendar.DATE);

will remove the time element.

share|improve this answer
Updated the link – A_M Aug 6 '12 at 11:07

Have you looked at Joda ? It's a much easier and more intuitive way to work with dates and times. For instance you can convert trivially between (say) LocalDateTime and LocalDate objects.

e.g. (to illustrate the API)

LocalDate date = new LocalDateTime(milliseconds).toLocalDate()

Additionally it solves some thread-safety issues with date/time formatters and is to be strongly recommended for working with any date/time issues in Java.

share|improve this answer
-1 Does this relate to the question at all? – jitter Dec 15 '09 at 16:35
Downvoted why ? – Brian Agnew Dec 15 '09 at 16:35
5  
I believe it does. It's a recommendation to use a better library rather than battle with the broken java.util classes (as evidenced by the question) – Brian Agnew Dec 15 '09 at 16:38
4  
Of course it relates, Joda is THE library for date,time & calendar manipulation in Java. It would be a dereliction of duty not to recommend it. – Joel Dec 15 '09 at 16:44
1  
The thread safety issue is very interesting, I found this post researching an Oracle/Hibernate error "IllegalArgumentException, sun.util.calendar.ZoneInfo.getOffset(ZoneInfo), oracle.jdbc.driver.DateCommonBinder.zoneOffset(OraclePreparedStatement)". This talks about another Oracle problems only appearing w heavy load forums.oracle.com/forums/thread.jspa?threadID=325576 It's really hard to even create an object with invalid milliseconds in normal code. For me, I think I'll downcast in my thread using Joda, rather than let Oracle use the possibly-suspect non-joda stuff. – Mark Bennett Nov 4 '11 at 21:41
show 5 more comments
Date date = new Date();
Calendar cal = Calendar.getInstance();
cal.setTime(date);
cal.set(Calendar.HOUR_OF_DAY, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
date = cal.getTime();
share|improve this answer
+1 just for fixing minor errors in my answer. :) – cletus Dec 15 '09 at 16:37

Use DateUtils from Apache, with truncate, like this:

DateUtils.truncate(Calendar.getInstance().getTime(), Calendar.DATE);
share|improve this answer

Use the Calendar class's set() method to set the HOUR_OF_DAY, MINUTE, SECOND and MILLISECOND fields to zero.

share|improve this answer

From java.util.Date JavaDocs:

The class Date represents a specific instant in time, with millisecond precision

and from the java.sql.Date JavaDocs:

To conform with the definition of SQL DATE, the millisecond values wrapped by a java.sql.Date instance must be 'normalized' by setting the hours, minutes, seconds, and milliseconds to zero in the particular time zone with which the instance is associated.

So, the best approach is to use java.sql.Date if you are not in need of the time part

java.util.Date utilDate = new java.util.Date();
java.sql.Date sqlDate = new java.sql.Date(System.currentTimeMillis());

and the output is:

java.util.Date : Thu Apr 26 16:22:53 PST 2012
java.sql.Date  : 2012-04-26
share|improve this answer

For timestamps:

timestamp = timestamp - (timestamp % 24 * 60 * 60 * 1000)
share|improve this answer

Just clear() redundant fields.

Calendar calendar = Calendar.getInstance();
calendar.setTime(date);
calendar.clear(Calendar.HOUR_OF_DAY);
calendar.clear(Calendar.MINUTE);
calendar.clear(Calendar.SECOND);
calendar.clear(Calendar.SECOND);
Date truncatedDate = calendar.getTime();
share|improve this answer

With Joda you can easily get the expected date.

new DateTime (new Date ()).toDateMidnight ().toDate ()

Benefit added of a way nicer API.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.