import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
public class TimeZoneExample {
public static void main(String[] args) {
DateTime now = DateTime.now();
DateTimeZone targetTimeZone = DateTimeZone.forID("America/New_York");
DateTime targetTime = now.withZone(targetTimeZone);
}
}