Here you can find the source of formatCompleteDate(Date date)
public static String formatCompleteDate(Date date)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static final SimpleDateFormat tsvCompleteDateFormat = new SimpleDateFormat("dd/MM/YY HH:mm"); public static String formatCompleteDate(Date date) { return tsvCompleteDateFormat.format(date); }/*from w ww . j a v a2 s . c om*/ }