简体   繁体   English

java.sql.Timestamp到Joda Instant,反之亦然

[英]java.sql.Timestamp to Joda Instant and vice versa

Is this possible? 这可能吗? I found a few solution for converting to and from localDateTime like can be seen here 我找到了一些转换为localDateTime和从localDateTime转换的解决方案,就像在这里可以看到的那样

But I can't find a solution for Joda Instant... 但我找不到Joda Instant的解决方案......

You can use the epoch millis to convert: 您可以使用epoch millis进行转换:

Timestamp ts = ....;
Instant i = new Instant(ts.getTime());
Timestamp ts2 = new Timestamp(i.getMillis());

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM