Here you can find the source of parseDate(String sDate, String sSourceFormat, String sDestinationFormat)
public static String parseDate(String sDate, String sSourceFormat, String sDestinationFormat)
//package com.java2s; public class Main { public static String parseDate(String sDate, String sSourceFormat, String sDestinationFormat) { String sRtn = ""; try {//from w w w . ja v a 2 s. c o m sRtn = new java.text.SimpleDateFormat(sDestinationFormat) .format(new java.text.SimpleDateFormat(sSourceFormat).parse(sDate)); } catch (Exception ex) { ex.printStackTrace(); } return sRtn; } }