| Author |
Code to check whether a given date falls on weekend or holidays
|
Sonali Sabnis
Greenhorn
Joined: Aug 25, 2008
Posts: 20
|
|
Hi, Can anyone provide a code fragment which will accept a date and check if it falls on weekend or holidays. If it falls on weekend or holidays then I need to increment that date in order to check again if the new date( incremented) falls on holiday or weekend. Appriciate yoor help and quick responses.
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32599
|
|
|
The Calendar classes will return day of week; I hope that's useful for a start.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
As for holidays, you will need to specify what the holidays are. THese are different for each country, and will even be different each year (Easter and such). If you have such a collection or array of holidays you can compare:
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: Code to check whether a given date falls on weekend or holidays
|
|
|