时间格式怎么样?转换时间戳

发布于 2024-11-04 07:24:07 字数 182 浏览 2 评论 0原文

如何格式化 java.sql 时间戳以进行显示?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

美煞众生 2024-11-11 07:24:07

这是一种方法...

new SimpleDateFormat("HH:mm:ss")
    .format(new Date(timestamp.getTime()));

编辑:实际上,SimpleDateFormat 也可以格式化时间戳,所以这更容易:

new SimpleDateFormat("HH:mm:ss")
    .format(new Timestamp(System.currentTimeMillis()));

This is one way to do it...

new SimpleDateFormat("HH:mm:ss")
    .format(new Date(timestamp.getTime()));

EDIT: Actually it turns out SimpleDateFormat can also format Timestamps so this is even easier:

new SimpleDateFormat("HH:mm:ss")
    .format(new Timestamp(System.currentTimeMillis()));
超可爱的懒熊 2024-11-11 07:24:07

使用 http://download.oracle.com/javase/ 6/docs/api/java/text/DateFormat.html 用于格式化日期和时间戳。

DateFormat df = DateFormat.getDateInstance();
for (int i = 0; i < myDate.length; ++i) {
    output.println(df.format(myDate[i]) + "; ");
}

Use http://download.oracle.com/javase/6/docs/api/java/text/DateFormat.html to format dates and timestamps.

DateFormat df = DateFormat.getDateInstance();
for (int i = 0; i < myDate.length; ++i) {
    output.println(df.format(myDate[i]) + "; ");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文