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

Here "lenient " is used in Java DateFormat, i checked the doc. but didn't get.

Can any body please tell me what is the use of this "lenient ", with one real time example where we use it.

share|improve this question
3  
Today is August 61st.... :) – Ray Toal Sep 30 '11 at 5:51
1  
@Ray Toal, wait....how far are we to 21 December 2012? lol – Buhake Sindi Sep 30 '11 at 5:58
2  
@BuhakeSindi The end of world is not in 21st Dec 2012 ;) – Eng.Fouad Mar 6 at 13:38

5 Answers

The javadoc clearly states:

Specify whether or not date/time parsing is to be lenient. 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.

So, if you have a pattern and create a date object that strictly matches your pattern, set lenient to false. Also, DateFormat is lenient, by default.

Basically, DateFormat sets Calendar.setLenient and the Javadoc states:

Specifies whether or not date/time interpretation is to be lenient. With lenient interpretation, a date such as "February 942, 1996" will be treated as being equivalent to the 941st day after February 1, 1996. With strict (non-lenient) interpretation, such dates will cause an exception to be thrown. The default is lenient.

share|improve this answer
Thank u very much – Binaya Sep 30 '11 at 6:13
My question would be, why on earth is lenient true by default! It would have made much more sense to me if it was false by default, because programmers, especially beginners, would tend to use SDF as a way to check date validity, and expect a "leniently parsable" date to fail (but it would pass). Leniency should be an extra feature for those who understand it and actually need to use it. It's ridiculous that Java devs decided to make it a standard behavior of the SDF system, forcing everyone else to learn about and use setLenient(false). Argh!... – ADTC May 21 at 2:57

For example this:

SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy");
System.out.println(simpleDateFormat.parse("0"));
simpleDateFormat.setLenient(false);
System.out.println(simpleDateFormat.parse("0"));

results in:

Thu Jan 01 00:00:00 CET 1
Exception in thread "main" java.text.ParseException: Unparseable date: "0"
    at java.text.DateFormat.parse(Unknown Source)
    at net.java.quickcheck.generator.support.X.main(X.java:28)
share|improve this answer
Thank u . Thomas for ur quick reply. – Binaya Sep 30 '11 at 6:12

If date is not lenient it will throw error if you pass out of range date but if is not then it will accept is and fix it . e.g August 61st from comment above will become September 30th. Java doc on how to set it . Default is true.

share|improve this answer

DateFormat object is lenient by default.

Leniency (Javadoc - Calendar)

Calendar has two modes for interpreting the calendar fields, lenient and non-lenient. When a Calendar is in lenient mode, it accepts a wider range of calendar field values than it produces. When a Calendar recomputes calendar field values for return by get(), all of the calendar fields are normalized. For example, a lenient GregorianCalendar interprets MONTH == JANUARY, DAY_OF_MONTH == 32 as February 1.

When a Calendar is in non-lenient mode, it throws an exception if there is any inconsistency in its calendar fields. For example, a GregorianCalendar always produces DAY_OF_MONTH values between 1 and the length of the month. A non-lenient GregorianCalendar throws an exception upon calculating its time or calendar field values if any out-of-range field value has been set.

share|improve this answer
Thank's a lot. i got it. – Binaya Sep 30 '11 at 6:15
1  
@Binaya: you don't need to post "thank you" messages to every one who helped. In fact it is discouraged. Simply upvote each answer that helped you (and optionally accept the one that helped most). See the FAQ (section Pay it forward). – Joachim Sauer Sep 30 '11 at 6:20
1  
@Joachim Sauer, a thank you is never discouraged. – Buhake Sindi Sep 30 '11 at 12:12
@TheEliteGentleman: I'm not sure that I agree (it does add noise), but more importantly it should be note that at the time I posted this comment this answer had zero upvotes (and the OP had enough rep to vote up). – Joachim Sauer Sep 30 '11 at 12:14

You can set the date parser as not lenient if you want it to accept strictly a date format you provided. It is well explained in the doc:

By default, parsing is lenient: If the input is not in the form used by this object's format method but can still be parsed as a date, then the parse succeeds. Clients may insist on strict adherence to the format by calling setLenient(false).

share|improve this answer

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.