Here you can find the source of getDateFromTimestamp(Timestamp timestamp)
Parameter | Description |
---|---|
timestamp | a parameter |
public static Date getDateFromTimestamp(Timestamp timestamp)
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; import java.util.Date; public class Main { /**//from ww w. j av a2s .co m * @param timestamp * @return */ public static Date getDateFromTimestamp(Timestamp timestamp) { if (timestamp == null) return null; return new Date(timestamp.getTime()); } }