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

Calendar.set(1950,6,3) creates "Sun Jul 02 ... 1950"; should be "Mon Jul 03 ...

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.1
    • core-libs
    • None
    • x86
    • windows_95



      Name: mc57594 Date: 03/08/97


      Calendar c = new GregorianCalendar(TimeZone.getDefault(),Locale.US);
          c.set(1950,6,3); // July 3 1950.
          Date d = c.getTime();
          DateFormat df1=DateFormat.getDateInstance(DateFormat.FULL,Locale.US);
          DateFormat df2=DateFormat.getDateInstance(DateFormat.FULL,Locale.FRANCE);
          DateFormat df3=DateFormat.getDateInstance(DateFormat.FULL,Locale.CANADA_FRENCH);
          DateFormat df4=DateFormat.getDateInstance(DateFormat.FULL,Locale.UK);
          DateFormat df1s=DateFormat.getDateInstance(DateFormat.SHORT,Locale.US);
          DateFormat df2s=DateFormat.getDateInstance(DateFormat.SHORT,Locale.FRANCE);
          DateFormat df3s=DateFormat.getDateInstance(DateFormat.SHORT,Locale.CANADA_FRENCH);
          DateFormat df4s=DateFormat.getDateInstance(DateFormat.SHORT,Locale.UK);
          System.out.println(" Using default "+
            "'Calendar c = new GregorianCalendar(TimeZone.getDefault(),Locale.US)' and "+
            "\n 'c.set(1950,6,3)':"+ //old:,1,1,1)':"+
            "\n Date d = c.getTime() = "+d+
            "\n in "+Locale.US+" = "+df1s.format(d)+" = "+df1.format(d)+
            "\n in "+Locale.FRANCE+" = "+df2s.format(d)+" = "+df2.format(d)+
            "\n in "+Locale.UK+" = "+df4s.format(d)+" = "+df4.format(d)+
            "\n in "+Locale.CANADA_FRENCH+" = "+df3s.format(d)+" = "+df3.format(d));

      company - PLATINUM technology, inc. , email - ###@###.###
      ======================================================================

            ssenthilsunw Shanmugam Senthil (Inactive)
            mchamnessunw Mark Chamness (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: