This question already has answers here:
How to get a java.time object from a java.sql.Timestamp without a JDBC 4.2 driver?

(2个答案)


4年前关闭。






例如:我有一个java.sql.Timestamp,我想将其转换为java.time.Instant.可以吗?

最佳答案

我们已经准备好将时间戳转换为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

关于java - Java中的即时时间戳,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38365130/

10-10 17:01