Here you can find the source of parseDate(String date)
public synchronized static Date parseDate(String date)
//package com.java2s; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static final DateFormat DEFAULT_DATETIME_FORMAT = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); public static Date parseDate(String date, DateFormat df) { try {/*from w ww. j av a 2 s .c o m*/ return df.parse(date); } catch (ParseException e) { throw new IllegalArgumentException(e); } } public static Date parseDate(String date, String dateFormat) { SimpleDateFormat fmt = new SimpleDateFormat(dateFormat); return parseDate(date, fmt); } public synchronized static Date parseDate(String date) { return parseDate(date, DEFAULT_DATETIME_FORMAT); } }