Here you can find the source of convertTimestampToDate(Timestamp timestamp)
public static Date convertTimestampToDate(Timestamp timestamp)
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; import java.util.Date; public class Main { public static Date convertTimestampToDate(Timestamp timestamp) { Date date = timestamp;/*from w w w.j a v a 2 s . co m*/ return date; } }