it doesnt http://joda-time.sourceforge.net/
DateTime now=new DateTime();
DateTime nowPST=now.withZone(DateTimeZone.forID("PST"));
DateTime nowEST=now.withZone(DateTimeZone.forID("EST"));
System.out.println(nowPST.hourOfDay());
System.out.println(nowEST.hourOfDay());
-igor
On 12/13/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote:
I'll actually go Igor's path of having model wrappers for this. Darn, why does anything you want to do with dates in Java have to be so awkward all the time. Eelco
