Here you can find the source of toDateFromTimestamp(String timestamp, String format)
public final static String toDateFromTimestamp(String timestamp, String format)
//package com.java2s; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public final static String toDateFromTimestamp(String timestamp, String format) { DateFormat f = new SimpleDateFormat(format); Date dateObj = new Date(Long.parseLong(timestamp)); return f.format(dateObj); }/* w ww . j a v a 2 s . c o m*/ }