Here you can find the source of date2String(Date date)
public static String date2String(Date date)
//package com.java2s; //License from project: LGPL import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String date2String(Date date) { String time = null;// www . j av a2 s .c o m try { SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmm"); time = format.format(date); } catch (Exception e) { e.printStackTrace(); } return time; } }