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 w w w.ja va2s .c o m*/ }