My assumption is that this code should be getting 3 distinct dates
specific to timezones ("UTC", "America/Phoenix","America/New_York")
and then displaying them appropriately but the end result are all
identical.

utc = Fri Feb 04 09:58:32 EST 2011
mst = Fri Feb 04 09:58:32 EST 2011
est = Fri Feb 04 09:58:32 EST 2011

What is it about the following code that is overwriting what we've
already established in the preceding code where we set the time
specific to timezones in c1, c2 & c3?

Date utc = c1.getTime();
Date mst = c2.getTime();
Date est = c3.getTime();

Thanks,
Jon

-- 
To post to this group, send email to javaprogrammingwithpassion@googlegroups.com
To unsubscribe from this group, send email to 
javaprogrammingwithpassion+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/javaprogrammingwithpassion?hl=en

Reply via email to