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!
Okami
|
feedback
|
|
I take the brute force approach
| |||||
feedback
|
|
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 Added: Many have recommended Joda Time in other Date-related threads. | |||||||
feedback
|
|
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. :( | |||
|
feedback
|