Java时间格式作为时间对象返回

时间:2016-03-30 18:38:18

标签: java datetime java-8 datetime-format

如果我这样做:

ZonedDateTime.now().format(DateTimeFormatter.BASIC_ISO_DATE)

它会返回String,而不是我希望它返回ZonedDateTime个对象。是否有一种干净的方式来做到这一点。这是显而易见的解决方案:

ZonedDateTime.parse(ZonedDateTime.now().format(DateTimeFormatter.BASIC_ISO_DATE));

有更简单的方法吗?这看起来有点过于冗长。

1 个答案:

答案 0 :(得分:1)

只需使用ZonedDateTime.now()

来源:docs