Java Date Format convertDateToString(Date date)

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

Description

Convert a date to the standard String representation yyyy-MM-dd hh:mm a.

License

Apache License

Parameter

Parameter Description
date the date to convert

Return

the date in the standard String representation

Declaration

public static String convertDateToString(Date date) 

Method Source Code

//package com.java2s;
/*// ww  w  . j av  a2  s .  c  om
 * Copyright 2017 Marcus Portmann
 *
 * 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.*;

public class Main {
    private static ThreadLocal<SimpleDateFormat> threadLocalSimpleDateFormat = new ThreadLocal<SimpleDateFormat>() {
        @Override
        protected SimpleDateFormat initialValue() {
            return new SimpleDateFormat("yyyy-MM-dd hh:mm a");
        }
    };

    /**
     * Convert a date to the standard <code>String</code> representation <b>yyyy-MM-dd hh:mm a</b>.
     *
     * @param date the date to convert
     *
     * @return the date in the standard <code>String</code> representation
     */
    public static String convertDateToString(Date date) {
        return threadLocalSimpleDateFormat.get().format(date);
    }
}

Related

  1. convertDateToString(Date aDate)
  2. convertDateToString(Date aDate)
  3. convertDateToString(Date date)
  4. convertDateToString(Date date)
  5. convertDateToString(Date date)
  6. convertDateToString(Date date)
  7. convertDateToString(Date date)
  8. convertDateToString(Date date, boolean millis)
  9. convertDateToString(Date date, int addHours)