Here you can find the source of dateToStr(Date date, String format)
Parameter | Description |
---|---|
date | a parameter |
format | a parameter |
public static String dateToStr(Date date, String format)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String dateToStr(Date date) { return dateToStr(date, "yyyy-MM-dd"); }//from w ww .j a v a2 s . com public static String dateToStr(Date date, String format) { return new SimpleDateFormat(format).format(date); } }