阅读量:0
在Java中,可以使用Date
类和getTime()
方法将时间转换为时间戳。以下是一个示例代码:
import java.util.Date; public class TimestampExample { public static void main(String[] args) { // 创建一个Date对象表示当前时间 Date now = new Date(); // 调用getTime()方法获取时间戳 long timestamp = now.getTime(); System.out.println("当前时间戳: " + timestamp); } }
输出结果将会是当前时间的时间戳。