Here you can find the source of formatD(Date date)
public static String formatD(Date date)
//package com.java2s; //License from project: LGPL import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static final String FORMAT_STYLE_D = "MM-dd HH:mm"; public static String formatD(Date date) { SimpleDateFormat sdf = new SimpleDateFormat(FORMAT_STYLE_D); return sdf.format(date); }/*from w ww . j av a2s . c o m*/ }