Here you can find the source of dateToTimestamp(Date date)
Parameter | Description |
---|---|
date | a parameter |
public static Timestamp dateToTimestamp(Date date)
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; import java.util.Date; public class Main { /***// w ww . ja va2 s . co m * * @param date * @return Timestamp */ public static Timestamp dateToTimestamp(Date date) { return new Timestamp(date.getTime()); } }