Java Parse Date parseDate(String value)

Here you can find the source of parseDate(String value)

Description

Attempts to parse a date in various formats.

License

Open Source License

Parameter

Parameter Description
value a parameter

Return

the date or null if it could not be parsed.

Declaration

public static Date parseDate(String value) 

Method Source Code


//package com.java2s;
/*/*from  w w w  . j a  v a2s  .  c om*/
 * Wiki_in_a_jar
 * 
 * Copyright (C) 2007 rico_g AT users DOT sourceforge DOT net
 * 
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License s published by the Free Software
 * Foundation; either version 2 of the License, or (at your option) any later
 * version.
 * 
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 * details.
 * 
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 51
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 * 
 */

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

import java.util.Date;

public class Main {
    private static final String[] DATE_FORMATS = { "yyyy-MM-dd", "yyyyMMdd" };

    /**
     * Attempts to parse a date in various formats.
     * 
     * @param value
     * @return the date or <code>null</code> if it could not be parsed.
     */
    public static Date parseDate(String value) {
        for (int i = 0; i < DATE_FORMATS.length; i++) {
            SimpleDateFormat df = new SimpleDateFormat(DATE_FORMATS[i]);
            try {
                return df.parse(value);
            } catch (ParseException e) {
                // try next one
            }
        }
        return null;
    }
}

Related

  1. parseDate(String timeString)
  2. parseDate(String token)
  3. parseDate(String value)
  4. parseDate(String value)
  5. parseDate(String value)
  6. parseDate(String value)
  7. parseDate(String value)
  8. parseDate(String value, Class targetType, String... formats)
  9. parseDate(String value, String formater)