Here you can find the source of formatTime(long date)
public static String formatTime(long date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; public class Main { public static String formatTime(long date) { SimpleDateFormat formatter = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss SSSS"); System.out.println(formatter.format(date)); return formatter.format(date); }/* w w w. j ava2s.c o m*/ }