Java Long Number to Date formatDateHeader(long millis)

Here you can find the source of formatDateHeader(long millis)

Description

format Date Header

License

Open Source License

Declaration

public static String formatDateHeader(long millis) 

Method Source Code

//package com.java2s;
/**/*from  ww  w.  jav  a 2  s . com*/
 * Copyright 2007-2016, Kaazing Corporation. 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.text.SimpleDateFormat;

import java.util.Locale;

public class Main {
    private static final DateFormat RFC822_FORMAT_PATTERN = new SimpleDateFormat(
            "EEE, dd MMM yyyy HH:mm:ss zzz", Locale.ENGLISH);

    public static String formatDateHeader(long millis) {
        return RFC822_FORMAT_PATTERN.format(millis);
    }
}

Related

  1. formatDate2DateStr(long date)
  2. formatDate2DateStr(long date)
  3. formatDateForLog(long dateTs)
  4. formatDateHeader(final long date)
  5. formatDateHeader(final long date)
  6. formatDateHeader(long value)
  7. formatDateISO(long millis)
  8. formatDateTime(long d)
  9. formatDateTime(long d)