Here you can find the source of parse(String date)
public static Date parse(String date)
//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 String yyyyMMddHHmmss = "yyyy-MM-dd HH:mm:ss"; public static Date parse(String date) { SimpleDateFormat format = new SimpleDateFormat(yyyyMMddHHmmss); try {/*from w w w.j a v a 2 s. co m*/ return format.parse(date); } catch (ParseException e) { e.printStackTrace(); } return null; } }