Here you can find the source of fromString(String dateString, String format)
public static Date fromString(String dateString, String format) throws ParseException
//package com.java2s; //License from project: Open Source License import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static Date fromString(String dateString, String format) throws ParseException { SimpleDateFormat inputFormat = new SimpleDateFormat(format); return inputFormat.parse(dateString); }/*from w w w . ja v a2s.c o m*/ }