在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); } }
运行上面的代码,会输出当前时间的时间戳。