Here you can find the source of getDateFromTimestamp(String time, String pattern)
public static String getDateFromTimestamp(String time, String pattern)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getDateFromTimestamp(String time, String pattern) { String date = new SimpleDateFormat(pattern).format(new Date(Long.parseLong(time) * 1000)); return date; }//from w w w . jav a2 s . co m }