Here you can find the source of toTimestampFromTime(String time)
public static Timestamp toTimestampFromTime(String time)
//package com.java2s; import java.sql.Timestamp; public class Main { public static Timestamp toTimestampFromTime(String time) { try {//from w w w.j a v a 2 s. co m return toTimestampFromTime(Long.parseLong(time)); } catch (Exception iae) { return null; } } public static Timestamp toTimestampFromTime(long time) { return new Timestamp(time); } }