Java Hour Format formatCompleteDate(Date date)

Here you can find the source of formatCompleteDate(Date date)

Description

format Complete Date

License

Open Source License

Declaration

public static String formatCompleteDate(Date date) 

Method Source Code

//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*/
}

Related

  1. formatAsRoundTripDate(Date date)
  2. formatAsXsdDateTime(Date date)
  3. formatCalendarForXpath(Calendar date)
  4. formatCalTime(Date time)
  5. formatCapDate(Calendar cal)
  6. formatCreationDate(String creationDate)
  7. formatCurrentDateForDebug()
  8. formatCurrentTime()
  9. formatCurrentTime()