Here you can find the source of formatTime(Date date)
public static Time formatTime(Date date)
//package com.java2s; //License from project: Apache License import java.sql.Time; import java.util.Date; public class Main { public static Time formatTime(Date date) { Time time = new Time(date.getTime()); return time; }/*from ww w .j av a2 s .c o m*/ }