Here you can find the source of strToDate(String str)
public static Date strToDate(String str)
//package com.java2s; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static Date strToDate(String str) { if (isEmpty(str)) { return null; }//from www . j a va 2 s. c o m SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); try { if (str.length() != 19) { return null; } return dateFormat.parse(str); } catch (ParseException e) { return null; } } public static boolean isEmpty(String str) { return ((str == null) || (str.length() == 0)); } }