Java tutorial
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; import java.text.SimpleDateFormat; public class Main { public static String timeStampToDate(String time, String format) { SimpleDateFormat sdf = new SimpleDateFormat(format); Timestamp ts = new Timestamp(Long.valueOf(time) * 1000); String date = sdf.format(ts); return date; } }