在Java中獲取當前時間的時間戳有多種方法,可以使用System.currentTimeMillis()
方法或者使用Instant.now().toEpochMilli()
方法。下面是具體的示例代碼:
// 使用System.currentTimeMillis()方法獲取當前時間的時間戳
long currentTimeMillis = System.currentTimeMillis();
System.out.println("當前時間的時間戳(毫秒):" + currentTimeMillis);
// 使用Instant.now().toEpochMilli()方法獲取當前時間的時間戳
Instant instant = Instant.now();
long epochMilli = instant.toEpochMilli();
System.out.println("當前時間的時間戳(毫秒):" + epochMilli);
以上代碼中,System.currentTimeMillis()
方法返回當前時間的時間戳(毫秒),而Instant.now().toEpochMilli()
方法返回當前時間的時間戳(毫秒)。兩種方法都可以用來獲取當前時間的時間戳。