Here you can find the source of parseTimestamp(Date date)
public static Timestamp parseTimestamp(Date date)
//package com.java2s; import java.sql.Timestamp; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class Main { public static Timestamp parseTimestamp(Date date) { if (date == null) { return null; }//w w w . j a v a2 s .c o m return new Timestamp(date.getTime()); } public static String getTime(Calendar c) { return getDate(c.getTime(), "HH:mm:ss"); } public static String getDate() { return getDate(getCurDate(), "yyyy-MM-dd"); } public static String getDate(Date date, String format) { String dtstr = ""; if (date == null) { return dtstr; } if (format == null || "".equals(format.trim())) { format = "yyyy-MM-dd"; } SimpleDateFormat sdf = new SimpleDateFormat(format); dtstr = sdf.format(date); return (dtstr == null ? "" : dtstr); } public static String getDate(Date date) { return getDate(date, "yyyy-MM-dd"); } public static Date getDate(long time) { Calendar c = getCurCalendar(); c.setTimeInMillis(time); return c.getTime(); } public static Date getCurDate() { return getCurCalendar().getTime(); } public static Calendar getCurCalendar() { return Calendar.getInstance(); } }