写点什么

Java 中时间戳的使用

作者:代码的路
  • 2023-01-15
    江苏
  • 本文字数:353 字

    阅读完需:约 1 分钟

原文链接

当前时间

import java.sql.Timestamp; //导包
Timestamp nowTime = new Timestamp(System.currentTimeMillis());System.out.println(nowTime);
复制代码


输出:


2022-06-08 11:15:51.014
复制代码

Long 型时间戳

Long timeLong = System.currentTimeMillis();System.out.println("timeString:" + timeLong + "\n");
复制代码


输出:


1652862076686
复制代码

时间戳转格式

Long timeLong = System.currentTimeMillis();SimpleDateFormat timeFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //设置格式String timeString = timeFormat.format(timeLong);System.out.println("timeString:" + timeString + "\n");
复制代码


输出:


2022-06-08 11:15:51
复制代码


学习更多编程知识,请关注我的公众号:


代码的路


凑字数专用凑字数专用凑字数专用凑字数专用凑字数专用凑字数专用凑字数专用凑字数专用凑字数专用

发布于: 刚刚阅读数: 4
用户头像

代码的路

关注

公众号:代码的路 2023-01-10 加入

Java、Python、C++、图像处理、深度学习相关知识分享

评论

发布
暂无评论
Java中时间戳的使用_Java_代码的路_InfoQ写作社区