溫馨提示×

java怎么將時間轉(zhuǎn)為時間戳

小億
162
2024-03-07 15:18:24
欄目: 編程語言

在Java中,可以使用Instant類來將時間轉(zhuǎn)換為時間戳。Instant類表示時間線上的一個特定點,可以通過Instant.now()方法獲取當(dāng)前時間的Instant對象,然后調(diào)用其toEpochMilli()方法將時間轉(zhuǎn)換為毫秒級的時間戳。

示例代碼如下:

import java.time.Instant;

public class Main {
    public static void main(String[] args) {
        Instant now = Instant.now();
        long timestamp = now.toEpochMilli();
        System.out.println("當(dāng)前時間戳:" + timestamp);
    }
}

運行以上代碼,將會輸出當(dāng)前時間的時間戳。

0