Here you can find the source of parse(Date d)
public static String parse(Date d)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String parse(Date d) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-mm-dd"); String dateStr = sdf.format(d); return dateStr; }//from w w w . j av a 2 s. c o m }