Here you can find the source of toString(Date date, String format)
public static String toString(Date date, String format)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String toString(Date date, String format) { SimpleDateFormat outputFormat = new SimpleDateFormat(format); return outputFormat.format(date); }// www . java2 s . co m }