Here you can find the source of parse(String dateString)
public static Date parse(String dateString)
//package com.java2s; //License from project: Apache License import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static Date parse(String dateString) { return parse(dateString, "yyyy-MM-dd HH:mm:ss"); }/*w w w. j av a2 s. c om*/ public static Date parse(String dateString, String pattern) { DateFormat df = new SimpleDateFormat(pattern); Date date = null; try { date = df.parse(dateString); } catch (Throwable t) { date = null; } return date; } }