I've got a DateTime object in GMT, and I'd like to convert it to EST, which is my local timezone. How can I do this?
I'm confused because since EST is my local timezone, java is assuming that any DateTime objects are already in EST and so new DateTime(refDate, DateTimeZone.forID('EST'))
isn't converting anything.