我有一个 pojo,它的归档类型为 Instant。我想设置即时从 TimsStamp 获取它。这有没有可能?
例如:我有一个java.sql.Timestamp
我想转换成的java.time.Instant.
有可能吗?
我有一个 pojo,它的归档类型为 Instant。我想设置即时从 TimsStamp 获取它。这有没有可能?
例如:我有一个java.sql.Timestamp
我想转换成的java.time.Instant.
有可能吗?
我们已经准备好将 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