Here you can find the source of toDate(Timestamp timestamp)
public static Date toDate(Timestamp timestamp)
//package com.java2s; import java.sql.Timestamp; import java.util.Date; public class Main { public static Date toDate(Timestamp timestamp) { return new Date(timestamp.getTime()); }//w w w. java 2 s . com }