Here you can find the source of getTimestamp(Date date)
public static Timestamp getTimestamp(Date date)
//package com.java2s; import java.sql.Timestamp; import java.util.*; public class Main { public static Timestamp getTimestamp(Date date) { return new Timestamp(date.getTime()); }//from w w w .j av a 2 s. c om }