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