Linux 拨号vps windows公众号手机端

java获取当前时间的方法有哪些

lewis 6年前 (2019-01-19) 阅读数 6 #程序编程
文章标签 Java

Java中获取当前时间的方法有以下几种:

  1. 使用System.currentTimeMillis()方法获取当前时间的毫秒数。
long currentTimeMillis = System.currentTimeMillis();
  1. 使用new Date()创建一个表示当前时间的Date对象。
Date currentDate = new Date();
  1. 使用Calendar.getInstance()方法获取一个Calendar对象,然后调用getTime()方法获取当前时间的Date对象。
Calendar calendar = Calendar.getInstance();
Date currentDate = calendar.getTime();
  1. 使用LocalDateTime.now()获取当前的本地日期和时间。
LocalDateTime currentDateTime = LocalDateTime.now();
  1. 使用ZonedDateTime.now()获取当前的带时区的日期和时间。
ZonedDateTime currentDateTime = ZonedDateTime.now();

以上这些方法可以根据需求选择使用,一般来说,推荐使用第4种或第5种方法获取当前时间,因为它们提供了更多的功能和灵活性。

版权声明

本文仅代表作者观点,不代表米安网络立场。

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

热门