Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

User should enter date in the next format yyyy-MM-dd. So I check it on my side using:

public static boolean isDateValid(SimpleDateFormat dateFormat, String date) {
    try {
        dateFormat.parse(date);
        return true;
    } catch (ParseException e) {
        e.printStackTrace();
        return false;
    }
}

But it returns true even I enter 12-12-2012 for the

SimpleDateFormat("yyyy-MM-dd")
share|improve this question
why do you want to force the user doing this - shouln't it be enough for you to just check if its a valid date - no matter what format? --> stackoverflow.com/questions/226910/… after oyu have validated you can you your simpledateformat to format the date the way you want it to be – OschtärEi Dec 4 '12 at 15:38
@tenhouse : in this case, what date would 10-12-2012 be ? 10th of december or 12th of october ? – njzk2 Dec 4 '12 at 15:41
Good idea, thanks for your advice. – barn.gumbl Dec 4 '12 at 15:41
@njzk2 agreed. I didn't think of that – OschtärEi Dec 4 '12 at 15:54
is this date string came from user input like EditText? ... if so ... you can use DatePicker or DatePickerDialog instead – Selvin Dec 4 '12 at 15:54
show 1 more comment

1 Answer

up vote 2 down vote accepted

You can use DateFormat.setLenient(false), to avoid doing lenient parsing: -

    try {
        dateFormat.setLenient(false);
        dateFormat.parse(date);
        return true;
    } catch (ParseException e) {
        e.printStackTrace();
        return false;
    }

From the docs: -

With lenient parsing, the parser may use heuristics to interpret inputs that do not precisely match this object's format. With strict parsing, inputs must match this object's format.

share|improve this answer
in this case 12-12-12 is considered like valid data for "yyyy-MM-dd" date format. – barn.gumbl Dec 4 '12 at 15:55
Probably it is taken as 0012-12-12. And if it is doing like that, probably it will also work for - 12-2-2. Please try it. – Rohit Jain Dec 4 '12 at 15:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.