Here you can find the source of fromDate(Timestamp timestamp)
public static Date fromDate(Timestamp timestamp)
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; import java.util.Date; public class Main { public static Date fromDate(Timestamp timestamp) { if (timestamp == null) { return null; }/*from w ww . j a va2s .c o m*/ return new Date(timestamp.getTime()); } }