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

Hey guys, I would like to know if there is a Date exception that I can deal with when I try to parse a date with this code here:

try{
   SimpleDateFormat df = new SimpleDateFormat("dd:MM:yyyy"); 
   Date date = df.parse(dateRelease);
}catch (ParseException e) {} 

Well, if the "dateRelease" isn't in a correct format type it throws ParseException, but I want to get if someone write like "40/03/2010" - WRONG with day, month or year invalid range. Actually, when a invalid date is sent, SimpleDateFormat just create a new Date with default numbers.

Do I have to create my own method with a regex to deal with it or is there an existing exception that tells me it to catch?

share|improve this question
Can you clarify what you are looking for exactly? It seems like you're looking for some type of exception to tell you if some validation failed? That's not really what exceptions are for. – javamonkey79 Dec 6 '10 at 1:14
hmm, I want to know if the user typed date has a valid day, month or year range. If not, it shows the fail and not create the object. – mateusmaso Dec 6 '10 at 1:18

1 Answer

up vote 3 down vote accepted

Make it non-lenient by SimpleDateFormat#setLenient() with a value of false.

SimpleDateFormat df = new SimpleDateFormat("dd:MM:yyyy"); 
df.setLenient(false);
Date date = df.parse(dateRelease);

Then it will throw ParseException when the date is not in a valid range.

share|improve this answer
thank you man, that's what I was searching for! (worked) – mateusmaso Dec 6 '10 at 1:48
You're welcome. – BalusC Dec 6 '10 at 2:19

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.