一尘不染

Java如何获取具有日期,小时和分钟的ISO 8601格式的当前时刻?

java

获得UTC当前时刻的ISO 8601格式表示的最优雅方法是什么?它应该看起来像:2019-10-12T08:50Z。

例:

String iso8601 = DateFormat.getDateTimeInstance(DateFormat.ISO_8601).format(date);

阅读 1213

收藏
2020-03-06

共1个答案

一尘不染

使用SimpleDateFormat格式化任何Date你想要的对象:

TimeZone tz = TimeZone.getTimeZone("UTC");
DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'"); // Quoted "Z" to indicate UTC, no timezone offset
df.setTimeZone(tz);
String nowAsISO = df.format(new Date());

new Date()如上所示使用a 将格式化当前时间。

2020-03-06