java8日期怎么获取时间戳
时间: 2023-07-11 17:57:14 浏览: 121
java获取当前时间戳的方法.pdf
在Java 8中,可以使用`Instant`类来获取当前时间的时间戳。以下是一个示例代码:
```java
Instant timestamp = Instant.now();
System.out.println(timestamp.getEpochSecond()); // 输出当前时间戳,单位为秒
System.out.println(timestamp.toEpochMilli()); // 输出当前时间戳,单位为毫秒
```
其中,`getEpochSecond()`方法返回当前时间的时间戳,单位为秒;而`toEpochMilli()`方法返回当前时间的时间戳,单位为毫秒。
阅读全文