Here you can find the source of parseDate(String value)
Parameter | Description |
---|---|
value | a parameter |
null
if it could not be parsed.
public static Date parseDate(String value)
//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; } }