Here you can find the source of getTimestamp(String sqlDateTime)
public static long getTimestamp(String sqlDateTime)
//package com.java2s; import java.sql.Timestamp; public class Main { public static long getTimestamp(String sqlDateTime) { return Timestamp.valueOf(sqlDateTime).getTime(); }//w w w . j a va 2 s .c o m }