Java Timestamp - How can I create a Timestamp with the date 23/09/2007?

后端 未结 8 1825

How can I create a Timestamp with the date 23/09/2007?

8条回答
  •  醉酒成梦
    2020-11-28 21:27

    By Timestamp, I presume you mean java.sql.Timestamp. You will notice that this class has a constructor that accepts a long argument. You can parse this using the DateFormat class:

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

提交回复
热议问题