Here you can find the source of dateToString(Date date)
public static String dateToString(Date date)
//package com.java2s; //License from project: Educational Community License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static SimpleDateFormat DATE_FORMAT = new SimpleDateFormat( "yyyy-MM-dd"); /**// w w w . j ava 2 s . c om * Converts a Date to a String with format DateUtils.DATE_FORMAT. */ public static String dateToString(Date date) { return date == null ? null : DATE_FORMAT.format(date); } }