Java Date Value Check isDateFormat(String dateString)

Here you can find the source of isDateFormat(String dateString)

Description

is Date Format

License

EUPL

Declaration

public static boolean isDateFormat(String dateString) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2014 Federal Chancellery Austria
 * MOA-ID has been developed in a cooperation between BRZ, the Federal
 * Chancellery Austria - ICT staff unit, and Graz University of Technology.
 *
 * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by
 * the European Commission - subsequent versions of the EUPL (the "Licence");
 * You may not use this work except in compliance with the Licence.
 * You may obtain a copy of the Licence at:
 * http://www.osor.eu/eupl///from   ww  w  . j a  v  a  2  s.c om
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the Licence is distributed on an "AS IS" basis,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the Licence for the specific language governing permissions and
 * limitations under the Licence.
 *
 * This product combines work with different licenses. See the "NOTICE" text
 * file for details on the various modules and licenses.
 * The "NOTICE" text file is part of the distribution. Any derivative works
 * that you distribute must include a readable copy of the "NOTICE" text file.
 *******************************************************************************/

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

public class Main {
    private static final String TEMPLATE_DATEFORMAT = "dd.MM.yyyy";

    public static boolean isDateFormat(String dateString) {
        if (dateString.length() > TEMPLATE_DATEFORMAT.length())
            return false;

        SimpleDateFormat sdf = new SimpleDateFormat(TEMPLATE_DATEFORMAT);
        try {
            sdf.parse(dateString);
            return true;

        } catch (ParseException e) {
            return false;
        }
    }
}

Related

  1. isDate(String val, SimpleDateFormat formatter)
  2. isDate(String value, Locale locale)
  3. isDateBefore(String date1)
  4. isDateBefore(String date1, String date2)
  5. isDateBefore(String date1, String date2)
  6. isDateFormat(String str, String format)
  7. isDateFormatString(String s, String dateFormat, Locale locale)
  8. isDateFormatValid(final String pattern)
  9. isDateInRange(Date startDt, Date endDt, Date theDate)