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