Any one know how to convert UTC time to CST time using joda date time api ?
My code is something like this.
DateTimeZone zone = DateTimeZone.forID("CST");
DateTime mstTime = utcDateTime.toDateTime(zone);
Api says ‘The datetime zone id CST is not recognised’
Short time-zone ids like “CST” are unclear and ambiguous, so they are not supported. Use a longer form, like “America/New_York”.