Here you can find the source of dateToString(java.sql.Date data)
public static String dateToString(java.sql.Date data)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; public class Main { public static String dateToString(java.sql.Date data) { String dta;/* ww w . j av a 2 s . com*/ SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy"); dta = sdf.format(data); return dta; } }