Java Locale Format formatDateTime(final Date date)

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

Description

Formats a date string using the currently selected locale.

License

Open Source License

Parameter

Parameter Description
date The date to format.

Return

The data string.

Declaration

public static String formatDateTime(final Date date) 

Method Source Code


//package com.java2s;
/*/*from  w  ww .  java  2 s .  c o m*/
Copyright 2015 Google Inc. All Rights Reserved.
    
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.DateFormat;

import java.util.Date;

import com.google.common.base.Preconditions;

public class Main {
    /**
     * Formats a date string using the currently selected locale.
     * 
     * @param date The date to format.
     * 
     * @return The data string.
     */
    public static String formatDateTime(final Date date) {
        Preconditions.checkNotNull(date, "Error: Date argument can't be null.");

        return DateFormat.getDateTimeInstance().format(date);
    }
}

Related

  1. formatDate(String strDate, Locale locale)
  2. formatDate(String value, Locale locale)
  3. formatDate2Date(Date date, String format)
  4. formatDate2String(Date date, String format)
  5. formatDateByFormat(Date date, String format)
  6. formatDateTime(java.util.Date date, String format, String locale, String timeZone)
  7. formatDateToSQLString(Date srcDate)
  8. formatDecimal(BigInteger b)
  9. formatDecimalDisplay(final double _numberToFormat, final String _formatToApply)