如果我这样做:
ZonedDateTime.now().format(DateTimeFormatter.BASIC_ISO_DATE)
它会返回String
,而不是我希望它返回ZonedDateTime
个对象。是否有一种干净的方式来做到这一点。这是显而易见的解决方案:
ZonedDateTime.parse(ZonedDateTime.now().format(DateTimeFormatter.BASIC_ISO_DATE));
有更简单的方法吗?这看起来有点过于冗长。