Here you can find the source of parseDate(Date date)
public static Date parseDate(Date date) throws ParseException
//package com.java2s; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static Date parseDate(Date date) throws ParseException { String format = "dd/mm/yy"; SimpleDateFormat formatter = new SimpleDateFormat(format); return formatter.parse(date.toString()); }/*from w w w . ja va2s.c om*/ }