Start Date should not be on week ends and on holidays

Start Date should not be on week ends and on holidays
[60 byte] By [gnra] at [2007-10-2 21:37:10]
# 1
Ok... Dont start anything on weekends or holidays. Simple.JJ
Java_Jaya at 2007-7-14 0:51:26 > top of Java-index,Java Essentials,Java Programming...
# 2
Your prerogative.
IanSchneidera at 2007-7-14 0:51:26 > top of Java-index,Java Essentials,Java Programming...
# 3
Do no post the same question multiple times. http://forum.java.sun.com/thread.jspa?threadID=741837 http://forum.java.sun.com/thread.jspa?threadID=741829 http://forum.java.sun.com/thread.jspa?threadID=741830 http://forum.java.sun.com/thread.jspa?threadID=741828
jverda at 2007-7-14 0:51:26 > top of Java-index,Java Essentials,Java Programming...
# 4

If your question is "How do I determine if a date is a weekend or holiday?":

1. Check GregorianCalendar for detecting weekends.

2. For holidays, you're on your own. Every country has their own list of holidays, so your solution depends on what country the app runs in. Maybe you need some sort of internationalization property file...

Dick_Adamsa at 2007-7-14 0:51:26 > top of Java-index,Java Essentials,Java Programming...