共计 559 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用 java.util.Date
类和 java.sql.Timestamp
类来将日期转换为时间戳。
以下是将日期转换为时间戳的示例代码:
import java.util.Date;
import java.sql.Timestamp;
public class DateToTimestampExample {public static void main(String[] args) {// 获取当前日期
Date date = new Date();
// 将日期转换为时间戳
long timestamp = date.getTime();
// 创建 Timestamp 对象
Timestamp ts = new Timestamp(timestamp);
// 输出时间戳
System.out.println(" 时间戳: " + timestamp);
System.out.println("Timestamp 对象: " + ts);
}
}
输出结果类似于:
时间戳: 1630958306809
Timestamp 对象: 2021-09-07 20:51:46.809
在上面的代码中,date.getTime()
方法会返回自 1970 年 1 月 1 日以来的毫秒数,然后使用 new Timestamp(timestamp)
构造函数创建一个 Timestamp
对象。
丸趣 TV 网 – 提供最优质的资源集合!
正文完