Here you can find the source of format(Date d)
public static String format(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 String format(Date d) { return df.format(d); }//www .j a va 2 s. c om }