Here you can find the source of formatDateToMinutes(Date date)
Parameter | Description |
---|---|
date | a parameter |
public static String formatDateToMinutes(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { /**/*from w ww . jav a2s .c o m*/ * Method formatDateToMinutes. * * @param date * @return String */ public static String formatDateToMinutes(Date date) { if (date != null) return new SimpleDateFormat("MM/dd/yyyy hh:mm a").format(date); else return null; } }