在Java中,可以使用System.currentTimeMillis()
方法來獲取當前時間的時間戳(即從1970年1月1日00:00:00 UTC到現在的毫秒數)。要將時間戳轉換為Date
對象,可以使用new Date(timestamp)
構造方法,其中timestamp
是時間戳的值。
另外,要將Date
對象轉換為時間戳,可以使用getTime()
方法,該方法返回自1970年1月1日00:00:00 UTC以來的毫秒數。例如:
long timestamp = System.currentTimeMillis();
Date date = new Date(timestamp);
long newTimestamp = date.getTime();