将Joda时间迁移到Java 8
乔达:
UserObject user = new UserObject() user.setCreatedAt(new DateTime(rs.getTimestamp("columnName")));`
迁移至Java 8
这是我的代码;它确实可以编译;我怀疑它是否有效:
ZonedDateTime.ofInstant(rs.getTimestamp("columnName").toLocalDateTime().toInstant(ZoneOffset.UTC),ZoneId.of("UTC")));
在某些情况下,日期是错误的。有什么建议吗?
这似乎可行:
ZonedDateTime.ofInstant(rs.getTimestamp("columnname").toInstant(), ZoneId.of("UTC"))