java 获取时间戳方式
时间: 2023-06-29 16:20:25 浏览: 113
获取时间戳方法
在Java中获取时间戳可以使用以下两种方式:
1. 使用System类的currentTimeMillis()方法获取当前时间戳,返回当前时间与1970年1月1日00:00:00之间以毫秒为单位的时间差。
```java
long timestamp = System.currentTimeMillis();
```
2. 使用Java 8中的Instant类获取当前时间戳,返回当前时间与1970年1月1日00:00:00之间以纳秒为单位的时间差。
```java
Instant instant = Instant.now();
long timestamp = instant.toEpochMilli();
```
阅读全文