Here you can find the source of getCurrentTimeInMySqlTime()
public static String getCurrentTimeInMySqlTime()
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static final String _16DIGIT_DATE_TIME_MYSQL = "yyyy-MM-dd HH:mm:ss"; public static String getCurrentTimeInMySqlTime() { SimpleDateFormat sdf = new SimpleDateFormat(_16DIGIT_DATE_TIME_MYSQL); return sdf.format(new Date()); }//from w ww. j a v a 2 s.co m public static String format(Date aDate, String type) { SimpleDateFormat sdf = new SimpleDateFormat(type); return sdf.format(aDate); } public static String format(Long dateMs, String type) { Date date = new Date(dateMs); SimpleDateFormat sdf = new SimpleDateFormat(type); return sdf.format(date); } }