Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.7.10
-
None
-
Patch
Description
Currently there is no simple way to format a Date object within a time zone other that the system time zone.
A possible implementation would be
public static String format(Calendar self, String pattern, TimeZone tz) {
SimpleDateFormat sdf = new SimpleDateFormat(pattern);
sdf.setTimeZone(tz);
return sdf.format(self);
}