将Timestamp转long 输出秒数
时间: 2024-01-19 15:03:09 浏览: 57
时间转化为秒数
4星 · 用户满意度95%
将Timestamp转换为long类型的整数,输出秒数,可以使用Instant类的`getEpochSecond()`方法将其转换为秒数。示例代码如下:
```java
import java.time.Instant;
public class TimestampToSeconds {
public static void main(String[] args) {
Instant timestamp = Instant.now(); // 获取当前时间戳
long seconds = timestamp.getEpochSecond(); // 转换为秒数
System.out.println("Timestamp: " + timestamp);
System.out.println("Seconds: " + seconds);
}
}
```
在上面的示例中,我们使用`Instant.now()`方法获取当前时间戳,然后使用`getEpochSecond()`方法将其转换为秒数,并将结果输出到控制台。
阅读全文