Name: bb33257 Date: 08/14/97
DateFormat parses the string "03-Apr-04 2:20:47 o'clock AM PST"
as Sat Apr 03 03:20:47.000 PST 2004 AD -- off by one hour. Code:
SimpleDateFormat fullFmt =
new SimpleDateFormat("EEE MMM dd HH:mm:ss.SSS zzz yyyy G");
DateFormat fmt = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.FULL,
Locale.ENGLISH);
String s = "03-Apr-04 2:20:47 o'clock AM PST";
int hour = 2;
try {
Date d = fmt.parse(s);
logln(s + " P> " + fullFmt.format(d));
if (d.getHours() != hour) errln("FAIL: Should parse to hour " + hour);
}
catch (ParseException e) { errln("FAIL: " + e.getMessage()); }
======================================================================
- duplicates
-
JDK-4083167 Date is wrong after transitioning from PDT to PST
-
- Closed
-