Here you can find the source of formatTime(Time time, String format)
public static String formatTime(Time time, String format)
//package com.java2s; //License from project: Apache License import java.sql.Time; import java.text.SimpleDateFormat; public class Main { public static String formatTime(Time time, String format) { SimpleDateFormat sf = new SimpleDateFormat(format); return sf.format(time); }/* w ww . j ava 2s . co m*/ }