Here you can find the source of getDateFromString(String dateStr, String pattern)
public static Date getDateFromString(String dateStr, String pattern)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static Date getDateFromString(String dateStr, String pattern) { SimpleDateFormat sdf = new SimpleDateFormat(pattern); Date resDate = null;/*from ww w. j a va2 s . co m*/ try { resDate = sdf.parse(dateStr); } catch (Exception e) { e.printStackTrace(); } return resDate; } }