Android Date Format formatDate(Date date)

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

Description

format Date

License

Apache License

Declaration

public static String formatDate(Date date) 

Method Source Code

//package com.java2s;
/*//  w  w  w.  j  a va  2s .co  m
 * Copyright (C) 2010 Nullbyte <http://nullbyte.eu>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    private final static SimpleDateFormat DATE_FORMAT = new SimpleDateFormat(
            "yyyy-MM-dd");

    public static String formatDate(Date date) {
        return DATE_FORMAT.format(date);
    }
}

Related

  1. getFormatDateTime(String formatString, Date d)
  2. formatDateToString(Date timestamp)
  3. getStringByFormat(Date date, String format)
  4. getStringByFormat(Date date, String format)
  5. convertDateToString(Date date)
  6. now(String dateFormat)
  7. now(String dateFormat)
  8. getLongFriendlyDate(Date dt)
  9. getMainClockString(Date utcDate)