Here you can find the source of convertToTime(Date toDate)
public static java.sql.Time convertToTime(Date toDate)
//package com.java2s; //License from project: Open Source License import java.util.Date; public class Main { public static java.sql.Time convertToTime(Date toDate) { java.sql.Time sql = null; sql = new java.sql.Time(toDate.getTime()); return sql; }/* w w w . j ava 2 s . co m*/ }