Here you can find the source of format(Date timestamp, String format)
private static String format(Date timestamp, String format)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static String format(Date timestamp, String format) { SimpleDateFormat formatter = new SimpleDateFormat(format); return formatter.format(timestamp); }//from w ww.j av a 2s . c o m }