Java Parse Date parseDateFromHeader(String datestr)

Here you can find the source of parseDateFromHeader(String datestr)

Description

Parses the string in a format suitable for a SMTP date header.

License

Apache License

Parameter

Parameter Description
datestr string to be parsed

Return

a java.util.Date object as parsed by the format.

Declaration

public static Date parseDateFromHeader(String datestr) throws ParseException 

Method Source Code

//package com.java2s;
/*//from  w  ww  . ja  v  a  2  s  .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.DateFormat;

import java.text.ParseException;
import java.text.SimpleDateFormat;

import java.util.Date;
import java.util.Locale;

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

    /**
     * Parses the string in a format suitable for a SMTP date header.
     *
     * @param datestr string to be parsed
     *
     * @return a java.util.Date object as parsed by the format.
     * @exception ParseException if the supplied string cannot be parsed by
     * this pattern.
     * @since Ant 1.8.0
     */
    public static Date parseDateFromHeader(String datestr) throws ParseException {
        synchronized (DATE_HEADER_FORMAT_INT) {
            return DATE_HEADER_FORMAT_INT.parse(datestr);
        }
    }
}

Related

  1. parseDateFormat(String s, String pattern, TimeZone tz)
  2. parseDateFrom(String dateStr)
  3. parseDateFromDateStr(String date)
  4. parseDateFromDateTimeStr(String date)
  5. parseDateFromDefault(String dateString)
  6. parseDateFromString(String valor, String formatoFecha)
  7. parseDateHeader(String header)
  8. parseDateHeader(String value)
  9. parseDateHHmm(java.util.Date date)