Here you can find the source of convertDate(Timestamp time)
public static Date convertDate(Timestamp time)
//package com.java2s; //License from project: Apache License import java.util.Date; import java.sql.Timestamp; public class Main { public static Date convertDate(Timestamp time) { return time == null ? null : new Date(time.getTime()); }//from ww w .j av a 2 s. co m }