The requirement is to simply to get the current wall time (including the correct DST adjustment) for a given Time Zone.
There seems to be a few questi
How about:
DateTime utc = new DateTime(DateTimeZone.UTC); DateTimeZone tz = DateTimeZone.forID("America/Los_Angeles"); DateTime losAngelesDateTime = utc.toDateTime(tz);