Here you can find the source of format(String aFormat, long aDate)
public static String format(String aFormat, long aDate)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String format(String aFormat, long aDate) { SimpleDateFormat format = new SimpleDateFormat(aFormat); return format.format(new Date(aDate)); }/*from ww w . ja v a 2 s . co m*/ }