Here you can find the source of dateToString(long date)
public static String dateToString(long date)
//package com.java2s; //License from project: Apache License import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String dateToString(long date) { DateFormat df = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); return df.format(new Date(date)); }//from www .j av a 2 s. c om }