Here you can find the source of parseDate(final String date)
public static Date parseDate(final String date) throws ParseException
//package com.java2s; //License from project: Apache License import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); public static Date parseDate(final String date) throws ParseException { return DATE_FORMAT.parse(date); }/*from w w w . j av a 2 s .c om*/ }