I am using following pattern and date

Date : 13-13-2007

Pattern : dd-MM-yyyy

Output: Sun Jan 13 00:00:00 IST 2008 Or 2008-01-13 00:00:00.0

I was expecting exception here. What can i do to generate exception when given date is inproper.

link|improve this question

61% accept rate
feedback

1 Answer

up vote 7 down vote accepted

Use DateFormat.setLenient(false) to tell the DateFormat/SimpleDateFormat that you want it to be strict.

link|improve this answer
Thnkx for quick reply – articlestack May 17 '11 at 10:02
After doing changes, you mentioned, it is giving parsing err in date:"13-10-2007 16:52:12.014789", pattern:"dd-MM-yyyy HH:mm:ss.SSSSSS". – articlestack May 17 '11 at 11:55
I found the answer. Java supports 3 digit in ms field means dd-MM-yyyy HH:mm:ss.SSS is supportable – articlestack May 17 '11 at 12:36
feedback

Your Answer

 
or
required, but never shown

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