Here you can find the source of dateFormat(String sdate, String format)
public static String dateFormat(String sdate, String format)
//package com.java2s; import java.text.SimpleDateFormat; public class Main { public static String dateFormat(String sdate, String format) { SimpleDateFormat formatter = new SimpleDateFormat(format); java.sql.Date date = java.sql.Date.valueOf(sdate); String dateString = formatter.format(date); return dateString; }//from www. ja v a2 s . c om }