在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)前時間的時間戳。