Here you can find the source of getFormatDateTime(String formatString, Date d)
public static String getFormatDateTime(String formatString, Date d)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; public class Main { public static String getFormatDateTime(String formatString, Date d) { SimpleDateFormat sdf = new SimpleDateFormat(formatString, Locale.ENGLISH);//w w w . ja v a2 s . c o m return sdf.format(d); } }