Android Date Format formatDate(Date date)

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

Description

format Date

Declaration

public static String formatDate(Date date) 

Method Source Code

//package com.java2s;

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;

public class Main {
    public static String DEFAULTFORMAT = "yyyy-MM-dd HH:mm:ss";

    public static String formatDate(Date date, String pattern) {
        if (date == null)
            return "";
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(date);/*from   w w w .ja v a  2 s . co m*/
        return formatCalendar(calendar, pattern);
    }

    public static String formatDate(Date date) {
        return formatDate(date, DEFAULTFORMAT);
    }

    public static String formatCalendar(Calendar calendar) {
        return formatCalendar(calendar, DEFAULTFORMAT);
    }

    public static String formatCalendar(Calendar calendar, String pattern) {
        SimpleDateFormat sdf = new SimpleDateFormat(pattern);
        // sdf.setTimeZone(TimeZone.getTimeZone(timeZone));
        return sdf.format(calendar.getTime());
    }
}

Related

  1. formatDA(Date d)
  2. formatDT(Date d)
  3. formatDate(Context context, Calendar date, FileTimeDisplay fileTimeDisplay)
  4. formatDate(Context context, long millis, FileTimeDisplay fileTimeDisplay)
  5. formatDate(Date d)
  6. formatDate(Date date)
  7. formatDate(Date date)
  8. formatDate(Date date)
  9. formatDate(Date date, String dateFormat)