Java Date Parse getDateFromOriDateStr(String strDate)

Here you can find the source of getDateFromOriDateStr(String strDate)

Description

get Date From Ori Date Str

License

Open Source License

Declaration

public static Date getDateFromOriDateStr(String strDate) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2005, 2006 IBM Corporation and others. All rights reserved. This program and the
 * accompanying materials are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * /*from  w ww. j  av a 2  s .  c om*/
 * Contributors: IBM Corporation - initial API and implementation
 *******************************************************************************/

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

import java.util.Date;

import java.util.Locale;

public class Main {

    public static Date getDateFromOriDateStr(String strDate) {
        Date date = null;
        if (null == strDate || "".equals(strDate)) {
            return null;
        } else {
            SimpleDateFormat sdf = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", Locale.US);
            try {
                date = sdf.parse(strDate);
            } catch (ParseException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
                return null;
            }
        }
        return date;
    }
}

Related

  1. getDateFromISO8601(String dateString)
  2. getDateFromISO8601(String iso8601Date)
  3. getDateFromIsoString(String dateString)
  4. getDateFromISOString(String iso)
  5. getDateFromOffset(Date prevDate, int offset)
  6. getDateFromRange(String date)
  7. getDateFromRequestStringDate(String dateString)
  8. getDateFromRFC822String(Object rfc822)
  9. getDateFromStr(DateFormat format, String s)