I am downloading some JSON data from a webservice. In this JSON I\'ve got some Date/Time values. Everything in UTC.
How can I parse this date string so the result Date objec
public static String toLocalDateString(String utcTimeStamp) {
Date utcDate = new Date(utcTimeStamp);
DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
df.setTimeZone(TimeZone.getTimeZone("PST"));
return df.format(utcDate);
}