如何在 Java 中将 long 变量更改为时间戳?
如何将长整型变量更改为时间戳变量?我可以将其转换为字符串,但我需要将其转换为时间戳才能在数据库中使用它。
How do I change a long variable to a Timestamp variable? I can convert it to a String but I need to convert it to Timestamp in order to use it in a database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Timestamp 扩展了 java.util.Date 并且它有一个接受 long 的构造函数。
像这样:
Timestamp extends java.util.Date and it has a constructor that accepts a long.
Like this:
我不懂 Java,但互联网搜索表明
Timestamp
有一个需要long
的构造函数:所以,你可以这样做,也许:
了解更多信息,请参阅 http://download.oracle.com/javase/6/docs/api/java/sql/Timestamp.html。
I don't know Java, but an internet search suggests that
Timestamp
has a constructor which takes along
:So, you can do something like this, perhaps:
For more information, see http://download.oracle.com/javase/6/docs/api/java/sql/Timestamp.html.
使用时间戳。它有一个接收 long 作为唯一参数的构造函数。
Use Timestamp. it has a constructor that receives long as the only parameter.