Here you can find the source of getNowFormatLog()
public static String getNowFormatLog()
//package com.java2s; //License from project: Apache License public class Main { public static String getNowFormatLog() { String LOG_DATE_FORMAT = "yyyyMMdd HH:mm:ss"; java.util.Date dd = new java.util.Date(); java.text.SimpleDateFormat df = null; String rtn = ""; df = new java.text.SimpleDateFormat(LOG_DATE_FORMAT); rtn = df.format(dd);/*from ww w .j a v a 2s . c o m*/ return rtn; } }