Here you can find the source of datetime(Date date)
public static String datetime(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); public static String datetime(Date date) { return formatter.format(date); }/*from w w w .jav a 2 s .c om*/ }