Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2018019 | 1.2.0 | John Oconner | P3 | Closed | Fixed | 1.2beta4 |
Name: diC59631 Date: 11/20/97
SimpleDateFormat sdf = new SimpleDateFormat("d");
ParsePosition p = new ParsePosition(0);
Date d = sdf.parse("14",p);
System.out.println("Date = "+d.toString());
System.out.println("Pos = "+p.getIndex());
The resulting date is "Thu Jan 01 1970 3:00..."
when it should be "Tue Jan 14 1970 3:00..."
This code works correctly with JDK 1.3
(Review ID: 20569)
======================================================================
- backported by
-
JDK-2018019 SimpleDateFormat won't parse "d" pattern correctly
-
- Closed
-