Java,Util.Date toString() displays the date in the local time zone.
There are several common scenarios where we want the data to be printed in UTC, including logs, data export and communication with external programs.
- What's the best way to create a String representation of
Java.Util.Datein UTC? - How to replace the standard
toString()format, which isn't sortable (thanks, @JonSkeet!) with a better format?
Addendum
I think that the standard way of printing the date in a custom format and time zone is quite tedious:
final Date date = new Date();
final String ISO_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSS zzz";
final SimpleDateFormat sdf = new SimpleDateFormat(ISO_FORMAT);
final TimeZone utc = TimeZone.getTimeZone("UTC");
sdf.setTimeZone(utc);
System.out.println(sdf.format(date));
I was looking for a one-liner like:
System.out.println(prettyPrint(date, "yyyy-MM-dd'T'HH:mm:ss.SSS zzz", "UTC"));
yyyy-MM-ddTHH:mm:ss.SSS) It's locale-independent, sortable, fixed-length, and easier to parse. – Jon Skeet Jul 2 '12 at 13:38Dateobject. – Adam Matan Jul 2 '12 at 13:58