Here you can find the source of toTimestamp(String _sDate)
public static Timestamp toTimestamp(String _sDate)
//package com.java2s; import java.sql.Timestamp; public class Main { public static Timestamp toTimestamp(String _sDate) { Timestamp ts = null;//from w w w.ja v a 2 s.c o m if (_sDate == null || "".equals(_sDate)) { return null; } ts = Timestamp.valueOf(_sDate + " 00:00:00.000000000"); return ts; } }