Here you can find the source of StringToDateHMS(String str)
public static Timestamp StringToDateHMS(String str)
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; public class Main { public static Timestamp StringToDateHMS(String str) { Timestamp time = null;// w ww . j a v a2 s .c o m time = Timestamp.valueOf(str); return time; } }