Here you can find the source of format(Date pDt)
public final static String format(Date pDt)
//package com.java2s; //License from project: LGPL import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy"); public final static String format(Date pDt) { return formatter.format(pDt); }/*w ww. j ava 2s. com*/ public final static String format(Date pDt, String psFormato) { return new SimpleDateFormat(psFormato).format(pDt); } }