Here you can find the source of getDateFromString(String input, String format)
public static Date getDateFromString(String input, String format)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static Date getDateFromString(String input, String format) { SimpleDateFormat sdf = new SimpleDateFormat(format); try {// w w w. ja v a2s.c o m return sdf.parse(input); } catch (Exception ex) { return null; } } }