9

我有一个 pojo,它的归档类型为 Instant。我想设置即时从 TimsStamp 获取它。这有没有可能?

例如:我有一个java.sql.Timestamp我想转换成的java.time.Instant.有可能吗?

4

2 回答 2

16

我们已经准备好将 Timestamp 转换为 Instant 的现有方法,反之亦然。

    Instant instant = Instant.now(); // get The current time in instant object
    Timestamp t=java.sql.Timestamp.from(instant); // Convert instant to Timestamp
    Instant anotherInstant=t.toInstant();         // Convert Timestamp to Instant
于 2016-07-14T04:27:01.403 回答
0

检查这个

公共即时 toInstant()

将此 Timestamp 对象转换为 Instant。转换会创建一个 Instant,它表示时间线上与此时间戳相同的点。

于 2016-07-14T04:22:34.423 回答