Anew Date()
是“旨在反映协调世界时 (UTC)”。用户在时钟上看到的内容取决于TimeZone
,可以在DateFormat
用于呈现日期的 中指定。下面的示例在 GMT 中打印同一时刻以及从纽约到柏林的一系列时区。
附录:我发现将其Date
视为模型和对该模型DateFormat
的视图很有帮助。
格林威治标准时间 2013 年 2 月 3 日 18:01:42 格林威治标准时间 1359914502673
2013 年 2 月 3 日 13:01:42 EST America/New_York 1359914502673
2013 年 2 月 3 日 14:01:42 AST America/Aruba 1359914502673
2013 年 2 月 3 日 15:01:42 ART America/Buenos_Aires 1359914502673
2013 年 2 月 3 日 16:01:42 BRST America/Sao_Paulo 1359914502673
2013 年 2 月 3 日 17:01:42 AZOT 大西洋/亚速尔群岛 1359914502673
2013 年 2 月 3 日 18:01:42 GMT 欧洲/伦敦 1359914502673
2013 年 2 月 3 日 19:01:42 CET 欧洲/柏林 1359914502673
包装日期;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
/** @see http://stackoverflow.com/a/14675418/230513 */
public class TestSDF {
private static final String s = "dd-MMM-yyyy HH:mm:ss zz";
private static final DateFormat f = new SimpleDateFormat(s);
public static void main(String[] args) {
Date date = new Date();
print("GMT", date);
print("America/New_York", date);
print("America/Aruba", date);
print("America/Buenos_Aires", date);
print("America/Sao_Paulo", date);
print("Atlantic/Azores", date);
print("Europe/London", date);
print("Europe/Berlin", date);
}
private static void print(String tz, Date d) {
f.setTimeZone(TimeZone.getTimeZone(tz));
System.out.println(f.format(d)
+ " " + tz
+ " " + d.getTime());
}
}