Here you can find the source of toDateString(Date date)
Parameter | Description |
---|---|
date | a parameter |
public static String toDateString(Date date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { /**/*from w ww . java2s. co m*/ * @param date * @return */ public static String toDateString(Date date) { return new SimpleDateFormat("yyyy-MM-dd HH:mm").format(date); } }