在Java中,可以使用System.currentTimeMillis()方法來打印當前時間戳。示例如下:
public class Main {
public static void main(String[] args) {
long timestamp = System.currentTimeMillis();
System.out.println("當前時間戳:" + timestamp);
}
}
運行該代碼會打印出當前時間戳,單位為毫秒。如果需要以其他格式顯示時間戳,可以使用SimpleDateFormat類將時間戳轉換為特定格式的日期和時間。