Here you can find the source of parseDate(String sDate)
public static Date parseDate(String sDate)
//package com.java2s; import java.text.*; import java.util.*; public class Main { public static Date parseDate(String sDate) { SimpleDateFormat bartDateFormat = new SimpleDateFormat("yyyy-MM-dd"); try {/*from w w w . j a v a 2 s . c o m*/ Date date = bartDateFormat.parse(sDate); return date; } catch (Exception ex) { } return null; } }