Here you can find the source of formatDateBdChar(Date birthdate)
public static String formatDateBdChar(Date birthdate)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static SimpleDateFormat datetimeFormatBdChar = new SimpleDateFormat("yyyy-MM-dd HH:mm"); public static String formatDateBdChar(Date birthdate) { return birthdate != null ? datetimeFormatBdChar.format(birthdate) : null; }/*from w w w.j a v a 2 s . c o m*/ }