Here you can find the source of format(Date date)
Parameter | Description |
---|---|
date | a parameter |
public static String format(Date date)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { /**//from www. j a v a2s.c om * * @param date * @return */ public static String format(Date date) { SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String dateString = formatter.format(date); return dateString; } }