How do you say, add 1 hour to a given result from calendar.getTime?
|
show 3 more comments
feedback
|
| |||
|
feedback
|
|
Well, you can add 1000 * 60 * 60 to the millisecond value of the So if you do want to go with the Date approach:
This will always add an actual hour, regardless of time zones, because a However, I'd strongly advise (as I always do with Java date/time questions) that you use Joda Time instead. It makes this and myriad other tasks a lot easier and more reliable. I know I sound like a broken record on this front, but the very fact that it forces you to think about whether you're actually talking about a local date/time, just a date, a local midnight etc makes a big difference. | |||||
feedback
|
getTimegives you aDate; is that what you really want to modify? – Michael Myers♦ Jul 22 '09 at 21:34