Get the time of tomorrow xx:xx - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T21:54:08Zhttp://stackoverflow.com/feeds/question/139288http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/139288/get-the-time-of-tomorrow-xxxx1Get the time of tomorrow xx:xxOkami2008-09-26T12:53:08Z2008-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#1393192Answer by Brandon DuRette for Get the time of tomorrow xx:xxBrandon DuRette2008-09-26T12:56:29Z2008-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#1393230Answer by Paul Whelan for Get the time of tomorrow xx:xxPaul Whelan2008-09-26T12:57:07Z2008-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#1393440Answer by Brian Knoblauch for Get the time of tomorrow xx:xxBrian Knoblauch2008-09-26T13:00:22Z2008-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#1393494Answer by Paul Tomblin for Get the time of tomorrow xx:xxPaul Tomblin2008-09-26T13:01:20Z2008-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>