Here you can find the source of timestamp2Date(java.sql.Timestamp t)
public static java.util.Date timestamp2Date(java.sql.Timestamp t)
//package com.java2s; public class Main { public static java.util.Date timestamp2Date(java.sql.Timestamp t) { return new java.util.Date(t.getTime()); }// w w w . j av a 2 s . co m }