Here you can find the source of DateTimeFormat(final Date date)
public static String DateTimeFormat(final Date date)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String DateTimeFormat(final Date date) { SimpleDateFormat format = new SimpleDateFormat("yyy-MM-dd hh:mm:ss"); return format.format(date); }/*from w w w. j a va 2 s .c om*/ }