Here you can find the source of toStringFormatTime(long time, String format)
public static String toStringFormatTime(long time, String format)
//package com.java2s; import java.text.*; public class Main { public static String toStringFormatTime(long time, String format) { SimpleDateFormat sdf = new SimpleDateFormat(format); return sdf.format(new java.util.Date(time)); }/*w w w. j ava 2s . c om*/ }