Here you can find the source of formatDate(String date)
public static Date formatDate(String date)
//package com.java2s; //License from project: Apache License import java.text.*; import java.util.*; public class Main { public static final DateFormat DEFAUALT_DATE_FORMAT = new SimpleDateFormat( "dd/MM/yyyy"); public static Date formatDate(String date) { try {//from w w w . j av a 2 s . com return DEFAUALT_DATE_FORMAT.parse(date); } catch (ParseException e) { e.printStackTrace(); } return null; } }