Here you can find the source of time2Date(Integer time, String format)
public static String time2Date(Integer time, String format)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String time2Date(Integer time, String format) { String date = ""; SimpleDateFormat sdf = new SimpleDateFormat(format); date = sdf.format(new Date(time * 1000l)); return date; }//w w w . j a v a2 s . c o m }