Here you can find the source of getFormatDateTimeDesc(long longDate)
public static String getFormatDateTimeDesc(long longDate)
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; public class Main { public static String getFormatDateTimeDesc(long longDate) { return new Timestamp(longDate).toString().substring(0, 19); }/*from w w w. jav a2 s . com*/ }