Here you can find the source of dateFormat(String sdate, String format)
public static String dateFormat(String sdate, String format)
//package com.java2s; //License from project: Apache License 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 ww w . j a va2 s . c om }