How to convert and format DATE from different TIME ZONEs
Below Java code snippet is an example of how to convert date from different time zone. //////////////////////////////Java Code Snippet///////////////////////////////////// import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.GregorianCalendar; import java.util.TimeZone; public class Test { public static void main(String[] args) { String pattern = "MM-dd-yyyy hh:mm aa"; String dateStr = "2014-08-07T03:24:17Z"; getFormatedDisplayDate(dateStr, pattern,"GMT", "CST"); } /** * Dates formats for conversion. */ private static final SimpleDateFormat[] DATE_FORMATS = { ...