Java HTTP Date getHttpDateFormat()

Here you can find the source of getHttpDateFormat()

Description

get Http Date Format

License

Apache License

Declaration

public static SimpleDateFormat getHttpDateFormat() 

Method Source Code

//package com.java2s;
/**/* ww  w. ja  va2s .  c o  m*/
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. 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.
 */

import java.text.SimpleDateFormat;

import java.util.Locale;
import java.util.TimeZone;

public class Main {
    public static SimpleDateFormat getHttpDateFormat() {
        SimpleDateFormat dateFormat = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss zzz", Locale.US);
        TimeZone tZone = TimeZone.getTimeZone("GMT");
        dateFormat.setTimeZone(tZone);
        return dateFormat;
    }
}

Related

  1. getHttpDate()
  2. getHttpDate(int days)
  3. getHttpDate(long l)
  4. getHttpDate(String date)
  5. getHttpDate(String value)
  6. getHttpDateFormat(String dataFormat, Locale defaultLocale, String defaultTimeZone)
  7. GetHTTPDateFormater()
  8. getHttpDateFormatter()
  9. getHttpDateString(Date date)