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