Here you can find the source of formatTime(Date d)
public static String formatTime(Date d)
//package com.java2s; //License from project: Apache License import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static final DateFormat df = new SimpleDateFormat("yyyy.MM.dd HH:mm:ss,SSS"); public static final DateFormat tf = new SimpleDateFormat("HH:mm:ss"); public static String formatTime(Date d) { return tf.format(d); }/*from ww w .ja va 2s . c o m*/ public static String format(Date d) { return df.format(d); } }