当前位置 : 主页 > 编程语言 > java >

java获取时间

来源:互联网 收集:自由互联 发布时间:2022-07-07
强制】获取当前毫秒数 System.currentTimeMillis(); 而不是 new Date().getTime(); 说明:如果想获取更加精确的纳秒级时间值,使用 System.nanoTime()的方式。在 JDK8 中, 针对统计时间等场景,推荐使

强制】获取当前毫秒数 System.currentTimeMillis(); 而不是 new Date().getTime();
说明:如果想获取更加精确的纳秒级时间值,使用 System.nanoTime()的方式。在 JDK8 中,
针对统计时间等场景,推荐使用 Instant 类。

public class TimeTest {
public static void main(String[] args) {
SimpleDateFormat sdf = new SimpleDateFormat("", Locale.SIMPLIFIED_CHINESE);
sdf.applyPattern("yyyy:MM:dd HH:mm:ss");
System.out.println(sdf.format(System.currentTimeMillis()));
}
}


上一篇:Java向上转型向下转型
下一篇:没有了
网友评论