Here you can find the source of getTime(Long time)
public static String getTime(Long time)
//package com.java2s; //License from project: Apache License import java.text.Format; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getTime(Long time) { Date d = new Date(time); Format simpleFormat = new SimpleDateFormat("E dd MMM yyyy hh:mm:ss a"); String date = simpleFormat.format(d); return date; }//from w ww. j ava 2 s. co m }