Here you can find the source of Date2Timestamp(Date d)
public static Timestamp Date2Timestamp(Date d)
//package com.java2s; import java.sql.Timestamp; import java.util.Date; public class Main { public static Timestamp Date2Timestamp(Date d) { return new Timestamp(d.getTime()); }/* w w w . j ava2s . c om*/ }