Java Parse Date parseDate(String text, String[] datePattern, int index)

Here you can find the source of parseDate(String text, String[] datePattern, int index)

Description

parse Date

License

LGPL

Declaration

private static boolean parseDate(String text, String[] datePattern, int index) 

Method Source Code

//package com.java2s;
//License from project: LGPL 

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

public class Main {
    private static boolean parseDate(String text, String[] datePattern, int index) {
        if (index == datePattern.length) {
            return false;
        }/*from  ww  w .  ja v a2  s. c  om*/
        SimpleDateFormat format = new SimpleDateFormat(datePattern[index]);
        format.setLenient(false);
        try {
            format.parse(text);
            return true;
        } catch (ParseException e) {
            return parseDate(text, datePattern, index + 1);
        }
    }
}

Related

  1. parseDate(String strFormat, String dateValue)
  2. parseDate(String string)
  3. ParseDate(String string, String format)
  4. parseDate(String t)
  5. parseDate(String text)
  6. parseDate(String time)
  7. parseDate(String time)
  8. parseDate(String timeString)
  9. parseDate(String token)