Here you can find the source of getFormatShortTime(Date date)
public static String getFormatShortTime(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getFormatShortTime(Date date) { return getFormatDateTime(date, "yyyy-MM-dd"); }//from w ww.j a v a 2 s . c om public static String getFormatDateTime(Date date, String format) { SimpleDateFormat sdf = new SimpleDateFormat(format); return sdf.format(date); } }