Java中获取当前时间的方法有以下几种:
- 使用
System.currentTimeMillis()
方法获取当前时间的毫秒数。
long currentTimeMillis = System.currentTimeMillis();
- 使用
new Date()
创建一个表示当前时间的Date
对象。
Date currentDate = new Date();
- 使用
Calendar.getInstance()
方法获取一个Calendar
对象,然后调用getTime()
方法获取当前时间的Date
对象。
Calendar calendar = Calendar.getInstance(); Date currentDate = calendar.getTime();
- 使用
LocalDateTime.now()
获取当前的本地日期和时间。
LocalDateTime currentDateTime = LocalDateTime.now();
- 使用
ZonedDateTime.now()
获取当前的带时区的日期和时间。
ZonedDateTime currentDateTime = ZonedDateTime.now();
以上这些方法可以根据需求选择使用,一般来说,推荐使用第4种或第5种方法获取当前时间,因为它们提供了更多的功能和灵活性。