Here you can find the source of getDate(Date date)
public static java.sql.Date getDate(Date date)
//package com.java2s; //License from project: Apache License import java.util.Calendar; import java.util.Date; public class Main { public static java.sql.Date getDate(Date date) { Calendar cal = Calendar.getInstance(); cal.setTime(date);/*from w ww . j a v a 2s .c om*/ return new java.sql.Date(cal.getTimeInMillis()); } }