Here you can find the source of strToDate(String strDate)
public static Date strToDate(String strDate)
//package com.java2s; import java.text.*; import java.util.*; public class Main { public static Date strToDate(String strDate) { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); ParsePosition pos = new ParsePosition(0); Date strtodate = formatter.parse(strDate, pos); return strtodate; }/*from w w w . j av a2 s.com*/ }