Java tutorial
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static Date stringMM_dd_yyyyToDate(String aStrDate) { SimpleDateFormat dateFormat = new SimpleDateFormat("MM-dd-yyyy"); try { return dateFormat.parse(aStrDate); } catch (java.text.ParseException ex) { return null; } } }