Here you can find the source of format(Date date)
protected static String format(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { protected static String format(Date date) { SimpleDateFormat format = new SimpleDateFormat("yyyy/MM/dd"); return format.format(date); }//from w w w. j a v a 2 s . c om }