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

SimpleDateFormatter outputting wrong months (off by one)

XMLWordPrintable

    • x86
    • windows_95



      Name: diC59631 Date: 01/12/98


      import java.util.*;
      import java.text.*;
      Compile and execute the file below. You will notice that
      The the first line shows ...Apr....
      And the second line shows March...
      for the SAME date!

      All the best,
      Rimon.

      import java.util.*;
      import java.text.*;

      public class testcal {
              public static void main(String args[]) {
                      // choose a date that is the FIRST of some month
                      // and some arbitrary time
                      Date d=new Date(97, 3, 1, 1, 1, 1);
                      SimpleDateFormat df=new SimpleDateFormat("MMMM");

                      System.out.println("Date="+d);
                      System.out.println("DF="+df.format(d));
              }
      }
      (Review ID: 23200)
      ======================================================================

            aliusunw Alan Liu (Inactive)
            dindrigo Daniel Indrigo (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: