Here you can find the source of getDateLabel(long date)
public static String getDateLabel(long date)
//package com.java2s; import java.text.SimpleDateFormat; public class Main { private static String DATE_FORMAT = "yyyy-MM-dd"; public static String getDateLabel(long date) { SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT); return sdf.format(date); }/* www . j a v a2 s . c om*/ }