How do you say, add 1 hour to a given result from calendar.getTime?

link|improve this question

1  
trying to figure out why this got down-voted... – codingbear Jul 22 '09 at 21:23
probably because its a one liner.. it wasn't exactly a complex question though. just new to java. Oh some people do suck, I think that could be it. – Louis Jul 22 '09 at 21:26
1  
Actually, it's a remarkably complex question when you get into DST changes. Do you always expect 01:30 + 1 hour to be 02:30, for instance? – Jon Skeet Jul 22 '09 at 21:34
It's a one liner and it's not terribly clear. getTime gives you a Date; is that what you really want to modify? – Michael Myers Jul 22 '09 at 21:34
1  
@jim: For this sort of thing, I wouldn't use a calendar at all. Just use the UTC time everywhere - you don't even need to use a human-readable format for it most of the time, just use the number of milliseconds since the epoch. Then you can just add the number of milliseconds you want. Only format it to a human-readable form when you need to display it to someone. – Jon Skeet Jul 23 '09 at 6:38
show 3 more comments
feedback

2 Answers

up vote 4 down vote accepted
Calendar cal = Calendar.getInstance();
//cal.setTime(date); //if you need to pass in a date
cal.add(Calendar.HOUR, 1);
link|improve this answer
feedback

Well, you can add 1000 * 60 * 60 to the millisecond value of the Date. That's probably the simplest way, if you don't want to mutate the Calendar instance itself. (I wouldn't like to guess exactly what Calendar will do around DST changes, by the way. It may well not be adding an hour of UTC time, if you see what I mean.)

So if you do want to go with the Date approach:

date.setTime(date.getTime() + 1000 * 60 * 60);

This will always add an actual hour, regardless of time zones, because a Date instance doesn't have a time zone - it's just a wrapper around a number of milliseconds since midnight on Jan 1st 1970 UTC.

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.

link|improve this answer
+1 for DST - incredibly easy to miss, next to impossible to reproduce and fix when it blows up in production 4 months later. BTW, this is the 2nd question I'm seeing today where Jon's answer is not the top one. Is the world as we know it coming to an abrupt end? :-) – ChssPly76 Jul 22 '09 at 21:40
as in depth and as helpful as your answer was, rich needs some noobie love and his answer really was exactly what I needed. Something I should have grabbed from the javadocs but missed :) – Louis Aug 4 '09 at 0:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.