Resetting the time part of a timestamp in Java - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T03:15:24Zhttp://stackoverflow.com/feeds/question/227007http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/227007/resetting-the-time-part-of-a-timestamp-in-java7Resetting the time part of a timestamp in JavaVijay Dev2008-10-22T18:28:18Z2008-10-22T21:22:41Z
<p>In Java, given a timestamp, how to reset the time part alone to 00:00:00 so that the timestamp represents the midnight of that particular day ?</p>
<p>In T-SQL, this query will do to achieve the same, but I don't know how to do this in Java.</p>
<p><code>SELECT CAST( FLOOR( CAST(GETDATE() AS FLOAT ) ) AS DATETIME) AS 'DateTimeAtMidnight';</code></p>
http://stackoverflow.com/questions/227007/resetting-the-time-part-of-a-timestamp-in-java/227044#2270443Answer by thoroughly for Resetting the time part of a timestamp in Javathoroughly2008-10-22T18:37:47Z2008-10-22T19:00:27Z<p>Assuming your "timestamp" is a java.util.Date, which is represented as the number of milliseconds since the beginning of the epoch (Jan 1, 1970), you can perform the following arithmetic:</p>
<pre><code>public static Date stripTimePortion(Date timestamp) {
long msInDay = 1000 * 60 * 60 * 24; // Number of milliseconds in a day
long msPortion = timestamp.getTime() % msInDay;
return new Date(timestamp.getTime() - msPortion);
}
</code></pre>
http://stackoverflow.com/questions/227007/resetting-the-time-part-of-a-timestamp-in-java/227049#2270498Answer by Alex Miller for Resetting the time part of a timestamp in JavaAlex Miller2008-10-22T18:38:31Z2008-10-22T18:46:41Z<p>You can go Date->Calendar->set->Date:</p>
<pre><code>Date date = new Date(); // timestamp now
Calendar cal = Calendar.getInstance(); // get calendar instance
cal.setTime(date); // set cal to date
cal.set(Calendar.HOUR_OF_DAY, 0); // set hour to midnight
cal.set(Calendar.MINUTE, 0); // set minute in hour
cal.set(Calendar.SECOND, 0); // set second in minute
cal.set(Calendar.MILLISECOND, 0); // set millis in second
Date zeroedDate = cal.getTime(); // actually computes the new Date
</code></pre>
<p>I love Java dates.</p>
<p>Note that if you're using actual java.sql.Timestamps, they have an extra nanos field. Calendar of course, knows nothing of nanos so will blindly ignore it and effectively drop it when creating the zeroedDate at the end, which you could then use to create a new Timetamp object.</p>
<p>I should also note that Calendar is not thread-safe, so don't go thinking you can make that a static single cal instance called from multiple threads to avoid creating new Calendar instances.</p>
http://stackoverflow.com/questions/227007/resetting-the-time-part-of-a-timestamp-in-java/227050#2270500Answer by Jan Gressmann for Resetting the time part of a timestamp in JavaJan Gressmann2008-10-22T18:38:38Z2008-10-22T18:38:38Z<p>Since I don't do much DateTime manipulation, this might not be the best way to do it. I would spawn a Calendar and use the Date as source. Then set hours, minutes and seconds to 0 and convert back to Date. Would be nice to see a better way, though.</p>
http://stackoverflow.com/questions/227007/resetting-the-time-part-of-a-timestamp-in-java/227186#2271860Answer by Domchi for Resetting the time part of a timestamp in JavaDomchi2008-10-22T19:21:25Z2008-10-22T19:21:25Z<p>Using Calendar.set() would certanly be "by the book" solution, but you might also use java.sql.Date:</p>
<pre><code>java.util.Date originalDate = new java.util.Date();
java.sql.Date wantedDate = new java.sql.Date(originalDate.getTime());
</code></pre>
<p>That would do exactly what you want since:</p>
<blockquote>
<p>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. </p>
</blockquote>
<p>Since java.sql.Date extends java.util.Date, you can freely use it as such. Be aware that wantedDate.getTime() will retrieve original timestamp though - that's why you don't want to create another java.util.Date from java.sql.Date!</p>
http://stackoverflow.com/questions/227007/resetting-the-time-part-of-a-timestamp-in-java/227595#2275955Answer by ScArcher2 for Resetting the time part of a timestamp in JavaScArcher22008-10-22T21:22:41Z2008-10-22T21:22:41Z<p>If you're using commons lang you can call DateUtils.truncate.</p>
<p>Here's the <a href="http://commons.apache.org/lang/api-2.4/org/apache/commons/lang/time/DateUtils.html#truncate(java.util.Date,%20int)" rel="nofollow">javadoc documentation</a>.</p>
<p>It does the same thing @Alex Miller said to do.</p>