Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes Java in General and the fly likes Max Date  Limit Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Max Date  Limit" Watch "Max Date  Limit" New topic
Author

Max Date Limit

Nicolas Flammel
Ranch Hand

Joined: May 05, 2004
Posts: 32
When I create a Date object after parsing like...

String eDate = "27-AUG-24";
SimpleDateFormat sdf = new SimpleDateFormat("dd-MMM-yy");
ParsePosition pos = new ParsePosition(0);
sdf.setLenient(false);
java.util.Date endDate = sdf.parse(eDate, pos);
System.out.println(endDate);

When printing the endDate I get the date as
Wed Aug 27 00:00:00 GMT+05:30 1924

Works fine till 26-AUG-24.

But when I do the same after changing the date format like...
String eDate = "27-AUG-2024";
SimpleDateFormat sdf = new SimpleDateFormat("dd-MMM-yyyy");
ParsePosition pos = new ParsePosition(0);
sdf.setLenient(false);
java.util.Date endDate = sdf.parse(eDate, pos);
System.out.println(endDate);

Here I get correct results.
Tue Aug 27 00:00:00 GMT+05:30 2024

Why is there a descrepancy between the two parsing formats?
somkiat puisungnoen
Ranch Hand

Joined: Jul 04, 2003
Posts: 1312
Year: For formatting, if the number of pattern letters is 2, the year is truncated to 2 digits; otherwise it is interpreted as a number.
For parsing, if the number of pattern letters is more than 2, the year is interpreted literally, regardless of the number of digits. So using the pattern "MM/dd/yyyy", "01/11/12" parses to Jan 11, 12 A.D.

For parsing with the abbreviated year pattern ("y" or "yy"), SimpleDateFormat must interpret the abbreviated year relative to some century. It does this by adjusting dates to be within 80 years before and 20 years after the time the SimpleDateFormat instance is created. For example, using a pattern of "MM/dd/yy" and a SimpleDateFormat instance created on Jan 1, 1997, the string "01/11/12" would be interpreted as Jan 11, 2012 while the string "05/04/64" would be interpreted as May 4, 1964. During parsing, only strings consisting of exactly two digits, as defined by Character.isDigit(char), will be parsed into the default century. Any other numeric string, such as a one digit string, a three or more digit string, or a two digit string that isn't all digits (for example, "-1"), is interpreted literally. So "01/02/3" or "01/02/003" are parsed, using the same pattern, as Jan 2, 3 AD. Likewise, "01/02/-3" is parsed as Jan 2, 4 BC.



SCJA,SCJP,SCWCD,SCBCD,SCEA I
Java Developer, Thailand
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Max Date Limit
 
Similar Threads
how to change the date format
How to get current date and time
java.text.SimpleDateFormat does not behaves as expected
Convert String value to Date Object
Get Dates between the given dates.