Print Java Timestamp: Code Example
To print a timestamp in Java, you can use the System.currentTimeMillis() method. This method returns the number of milliseconds since January 1, 1970, 00:00:00 GMT. Here is an example code snippet:
long timestamp = System.currentTimeMillis();
System.out.println("当前时间戳:" + timestamp);
This will allow you to print the current timestamp.