java.util.Date.setDate() method does not recalc the day of the week
Steps to reproduce:
Compile and run the following code:
/* Tests Date accounting
* Kevin Smith
*/
import java.util.Date;
public class BadDate
{
static public void main(String args[])
{
int i;
int startDate = 27;
int startMonth = 11;
int startYear = 95;
Date date = new Date(startYear, startMonth, startDate);
// iterate through suspect dates
for(i = 0; i < 8; ++i)
{
date.setDate(date.getDate() + 1);
System.out.println(date);
} // end for
} // end main()
}
Steps to reproduce:
Compile and run the following code:
/* Tests Date accounting
* Kevin Smith
*/
import java.util.Date;
public class BadDate
{
static public void main(String args[])
{
int i;
int startDate = 27;
int startMonth = 11;
int startYear = 95;
Date date = new Date(startYear, startMonth, startDate);
// iterate through suspect dates
for(i = 0; i < 8; ++i)
{
date.setDate(date.getDate() + 1);
System.out.println(date);
} // end for
} // end main()
}
- relates to
-
JDK-1229000 util.Date.setMonth() should recalc day of week
-
- Closed
-
-
JDK-1226859 Date.setDate() does not wrap around end of month, or end of year, all platforms
-
- Closed
-
-
JDK-1229004 util.Date.setYear() should recalc day of week
-
- Closed
-