Here you can find the source of formatDate(final long time)
public static String formatDate(final long time)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static final String H_DATE_FROMAT = "yyyyMMdd"; public static String formatDate(final long time) { return new SimpleDateFormat(H_DATE_FROMAT).format(new Date(time)); }//from ww w. jav a 2 s .co m }