Java Locale Format formatMysqlDate(final Date date)

Here you can find the source of formatMysqlDate(final Date date)

Description

Format mysql date.

License

Apache License

Parameter

Parameter Description
date the date

Return

the string

Declaration

public static String formatMysqlDate(final Date date) 

Method Source Code

//package com.java2s;
/*/*w w  w .ja va  2 s.  c  o  m*/
 * Copyright 2002-2016 Jalal Kiswani.
 *
 * 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;
import java.util.Locale;

public class Main {
    /** The Constant PATTERN_DEFAULT. */
    public static final String PATTERN_DEFAULT = "dd/MM/yyyy";
    /** The Constant PATTERN_MYSQL. */
    public static final String PATTERN_MYSQL = "yyyy-MM-dd";

    /**
     * Format mysql date.
     *
     * @param date
     *            the date
     * @return the string
     */
    public static String formatMysqlDate(final Date date) {
        return formatDate(date, PATTERN_MYSQL);
    }

    /**
     * Format date.
     *
     * @param date
     *            Date
     * @return String
     */
    public static String formatDate(final java.util.Date date) {
        return formatDate(date, PATTERN_DEFAULT);
    }

    /**
     * Format date.
     *
     * @param date
     *            the date
     * @param pattren
     *            the pattren
     * @return the string
     */
    public static String formatDate(final java.util.Date date, final String pattren) {
        final SimpleDateFormat formatter = new SimpleDateFormat(pattren, new Locale("en", "US"));
        if (date == null) {
            return "";
        }
        return formatter.format(date);
    }
}

Related

  1. formatLocaleDate(final java.util.Date date)
  2. formatLocaleTime(long time, Locale locale)
  3. formatMailDate(Date date)
  4. formatMessage(@Nonnull ResourceBundle bundle, @Nonnull String messageKey, @Nullable Object... args)
  5. formatMessage(String messageKey, Locale locale)
  6. formatNumber(double d, String pattern)
  7. formatNumber(long number)
  8. formatNumber(long value)
  9. formatNumber(Number num)