-
Bug
-
Resolution: Not an Issue
-
P3
-
None
-
1.0.2
-
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
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