在Java中打印时间戳的方法是使用System.currentTimeMillis()方法。这个方法返回自1970年1月1日00:00:00 GMT以来当前时间的毫秒数。示例代码如下:
long timestamp = System.currentTimeMillis(); System.out.println("当前时间戳:" + timestamp);
这样就可以打印出当前的时间戳。