Here you can find the source of transformDateTime(long t)
public static String transformDateTime(long t)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String transformDateTime(long t) { Date date = new Date(t); SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss"); return dateFormat.format(date); }//from ww w . j a va 2 s . c o m }