时间格式怎么样?转换时间戳
TimeFormat 怎么样,如何将时间戳转换为显示时间的字符串?
How to format a java.sql Timestamp for displaying?
What about TimeFormat, how can I convert a Timestamp as a String showing the time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一种方法...
编辑:实际上,SimpleDateFormat 也可以格式化时间戳,所以这更容易:
This is one way to do it...
EDIT: Actually it turns out SimpleDateFormat can also format Timestamps so this is even easier:
使用 http://download.oracle.com/javase/ 6/docs/api/java/text/DateFormat.html 用于格式化日期和时间戳。
Use http://download.oracle.com/javase/6/docs/api/java/text/DateFormat.html to format dates and timestamps.