Java 时间戳 - 如何创建日期为 23/09/2007 的时间戳?
如何创建日期为 23/09/2007 的时间戳?
如何创建日期为 23/09/2007 的时间戳?
我猜你的意思是java.sql.Timestamp
。您会注意到,此类具有一个接受参数的构造函数。您可以使用以下类来解析它:Timestamp
long
DateFormat
DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
Date date = dateFormat.parse("23/09/2007");
long time = date.getTime();
new Timestamp(time);
这又如何呢?
java.sql.Timestamp timestamp = java.sql.Timestamp.valueOf("2007-09-23 10:10:10.0");