java如何获取当前系统时间和1秒后的时间
时间: 2023-07-05 19:12:58 浏览: 80
JAVA获取当前时间以及JAVA_Spring定时器
5星 · 资源好评率100%
可以使用Java中的Date和Calendar类来获取当前系统时间和1秒后的时间。以下是示例代码:
```java
// 获取当前系统时间
Date currentDate = new Date();
System.out.println("Current date and time: " + currentDate);
// 获取1秒后的时间
Calendar calendar = Calendar.getInstance();
calendar.setTime(currentDate);
calendar.add(Calendar.SECOND, 1);
Date oneSecondLater = calendar.getTime();
System.out.println("One second later: " + oneSecondLater);
```
这个示例代码中,首先使用Date类获取当前系统时间,并将其打印出来。然后使用Calendar类将当前时间设置为日历,并通过add方法将其增加1秒。最后,使用getTime方法将日历转换为Date类型,并打印出1秒后的时间。请注意,这个时间戳是基于系统时钟的,因此它可能会受到时钟的漂移和调整的影响。
阅读全文