在Java中,可以使用System.currentTimeMillis()方法來獲取當前時間戳。這個方法返回的是自1970年1月1日00:00:00 GMT以來的毫秒數,也就是當前時間的時間戳。
下面是一個簡單的示例代碼:
public class Main {
public static void main(String[] args) {
long timestamp = System.currentTimeMillis();
System.out.println("Current timestamp: " + timestamp);
}
}
運行上面的代碼,會輸出當前時間的時間戳。