Java 时间戳 - 如何创建日期为 23/09/2007 的时间戳?

2022-08-31 09:47:55

如何创建日期为 23/09/2007 的时间戳?


答案 1

我猜你的意思是java.sql.Timestamp。您会注意到,此类具有一个接受参数的构造函数。您可以使用以下类来解析它:TimestamplongDateFormat

DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
Date date = dateFormat.parse("23/09/2007");
long time = date.getTime();
new Timestamp(time);

答案 2

这又如何呢?

java.sql.Timestamp timestamp = java.sql.Timestamp.valueOf("2007-09-23 10:10:10.0");