Java Timestamp Format format8chars(long timestamp)

Here you can find the source of format8chars(long timestamp)

Description

formatchars

License

Apache License

Declaration

public static String format8chars(long timestamp) 

Method Source Code

//package com.java2s;
/*//from   ww  w  .  ja v  a  2s.com
 * Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  The ASF licenses this file to You
 * 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.  For additional information regarding
 * copyright in this work, please see the NOTICE file in the top level
 * directory of this distribution.
 */

import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    private static final String format8chars = "yyyyMMdd";

    public static String format8chars(long timestamp) {
        return format8chars(new Date(timestamp));
    }

    public static String format8chars(Date date) {
        return format(date, get8charDateFormat());
    }

    /**
     * Returns a string the represents the passed-in date parsed
     * according to the passed-in format.  Returns an empty string
     * if the date or the format is null.
     **/
    public static String format(Date aDate, SimpleDateFormat aFormat) {
        if (aDate == null || aFormat == null) {
            return "";
        }
        synchronized (aFormat) {
            return aFormat.format(aDate);
        }
    }

    public static SimpleDateFormat get8charDateFormat() {
        return new SimpleDateFormat(format8chars);
    }
}

Related

  1. format(final long unixTimeStamp)
  2. format(long timestamp)
  3. format(long timeStamp)
  4. format(Timestamp time)
  5. format2AdwordsTimestamp(Date date)
  6. formataDataHoraMinuto(Timestamp dataHora)
  7. formatCalendar(Timestamp stamp)
  8. formatCurrentDateTimeStamp(final String dateFormatString)
  9. formatDataTime(Timestamp intime)