Here you can find the source of dateToString(java.sql.Date datee)
public static String dateToString(java.sql.Date datee)
//package com.java2s; //License from project: Open Source License public class Main { public static String dateToString(java.sql.Date datee) { return datee.toString(); }/*from w w w . ja v a 2s.c o m*/ }