Here you can find the source of convertToTimestampDate(Date date)
public static Timestamp convertToTimestampDate(Date date)
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; import java.util.Date; public class Main { public static Timestamp convertToTimestampDate(Date date) { return new Timestamp(date.getTime()); }/* w w w .j ava 2 s . c o m*/ }