Here you can find the source of getStrDateTime()
public static String getStrDateTime()
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getStrDateTime() { return getStrDateTime(new Date()); }// ww w. j a v a 2 s .c om public static String getStrDateTime(Date date) { SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmss"); return dateFormat.format(date); } }