Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4071905

DateFormat 2-digit year parsing faulty

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.1.2
    • core-libs
    • None
    • x86
    • windows_nt



      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()); }
      ======================================================================

            ssenthilsunw Shanmugam Senthil (Inactive)
            bcbeck Brian Beck (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: