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

java.util.Date.getDay sometimes returns the wrong day

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P3 P3
    • None
    • 1.0.2
    • core-libs
    • sparc
    • solaris_2.4

      import java.util.*;

      For some reason for the date of April 4, 1983 getDay returns day=1 instead of day=4


      class date{
          public static void main(String args[]){
      Date jdate= new Date(83,3,4);
      System.out.println("Date:" + jdate.toString());
      System.out.println("Year:" + jdate.getYear() + " Month:" + jdate.getMonth() +
      " Day:" + jdate.getDay());
          }
      }

      Output:

      Date:Mon Apr 04 00:00:00 PST 1983
      Year:83 Month:3 Day:1

            Unassigned Unassigned
            mhapnersunw Mark Hapner (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: