Here you can find the source of long2StringPerDay(long t, SimpleDateFormat sdf)
public static String long2StringPerDay(long t, SimpleDateFormat sdf)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String long2StringPerDay(long t) { SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); return sdf.format(new Date(t)); }/*from ww w . j ava 2 s .c om*/ public static String long2StringPerDay(long t, SimpleDateFormat sdf) { return sdf.format(new Date(t)); } }