发布时间:2025-12-10 22:50:50 浏览次数:1
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();