扫描二维码下载沐宇APP

沐宇

微信扫码使用沐宇小程序

沐宇

java怎么将时间转为时间戳

扬州沐宇科技
2024-03-07 15:18:24
Java

在Java中,可以使用Instant类来将时间转换为时间戳。Instant类表示时间线上的一个特定点,可以通过Instant.now()方法获取当前时间的Instant对象,然后调用其toEpochMilli()方法将时间转换为毫秒级的时间戳。

示例代码如下:

import java.time.Instant;

public class Main {
    public static void main(String[] args) {
        Instant now = Instant.now();
        long timestamp = now.toEpochMilli();
        System.out.println("当前时间戳:" + timestamp);
    }
}

运行以上代码,将会输出当前时间的时间戳。

扫码添加客服微信