Get the time of tomorrow xx:xx - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T21:54:08Z http://stackoverflow.com/feeds/question/139288 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/139288/get-the-time-of-tomorrow-xxxx 1 Get the time of tomorrow xx:xx Okami 2008-09-26T12:53:08Z 2008-09-26T13:01:20Z <p>Dear all,</p> <p>what is an efficient way to get a certain time for the next day in Java? Let's say I want the long for tomorrow 03:30:00. Setting Calendar fields and Date formatting are obvious. Better or smarter ideas, thanks for sharing them!</p> <p>Okami</p> http://stackoverflow.com/questions/139288/get-the-time-of-tomorrow-xxxx/139319#139319 2 Answer by Brandon DuRette for Get the time of tomorrow xx:xx Brandon DuRette 2008-09-26T12:56:29Z 2008-09-26T12:56:29Z <p>I'm curious to hear what other people have to say about this one. My own experience is that taking shortcuts (i.e., "better or smarter ideas") with <code>Date</code>s almost always lands you in trouble. Heck, just using <code>java.util.Date</code> is asking for trouble. </p> <p>Added: Many have recommended <a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda Time</a> in other Date-related threads.</p> http://stackoverflow.com/questions/139288/get-the-time-of-tomorrow-xxxx/139323#139323 0 Answer by Paul Whelan for Get the time of tomorrow xx:xx Paul Whelan 2008-09-26T12:57:07Z 2008-09-26T12:57:07Z <p>I would consider using the predefined api the smart way to do this.</p> http://stackoverflow.com/questions/139288/get-the-time-of-tomorrow-xxxx/139344#139344 0 Answer by Brian Knoblauch for Get the time of tomorrow xx:xx Brian Knoblauch 2008-09-26T13:00:22Z 2008-09-26T13:00:22Z <p>Not sure why you wouldn't just use the Calendar object? It's easy and maintainable. I agree about not using Date, pretty much everything useful about it is now deprecated. :(</p> http://stackoverflow.com/questions/139288/get-the-time-of-tomorrow-xxxx/139349#139349 4 Answer by Paul Tomblin for Get the time of tomorrow xx:xx Paul Tomblin 2008-09-26T13:01:20Z 2008-09-26T13:01:20Z <p>I take the brute force approach</p> <pre><code>Calendar dateCal = Calendar.getInstance(); // make it now dateCal.setTime(new Date()); // make it tomorrow dateCal.add(Calendar.DAY_OF_YEAR, 1); // Now set it to the time you want dateCal.set(Calendar.HOUR_OF_DAY, hours); dateCal.set(Calendar.MINUTE, minutes); dateCal.set(Calendar.SECOND, seconds); dateCal.set(Calendar.MILLISECOND, 0); return dateCal.getTime(); </code></pre>