Java tutorial
//package com.java2s; import java.text.SimpleDateFormat; public class Main { public static String getTime(long time) { SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); return df.format(time * 1000l); } }