Here you can find the source of formatDateYyyymmddhhmmss(Date date)
public static String formatDateYyyymmddhhmmss(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.*; public class Main { public static String formatDateYyyymmddhhmmss(Date date) { return new SimpleDateFormat("yyyyMMddHHmmss").format(date); }//from w w w. j a v a 2s . c om }