running Timer on weekdays?
i want to create a Timer which runs on every weekday(mon-fri) at 9:30AM, 9:54AM, 3:31PM, 3:49PM, 4:01PM.
how do i achieve this?
or if any one can provide me any third-party classes which can run be configured like windows Task Scheduler (such as task can be run daily, weekly, monthly at any specific time)
[325 byte] By [
has_stara] at [2007-10-3 4:35:00]

> i want to create a Timer which runs on every
> weekday(mon-fri) at 9:30AM, 9:54AM, 3:31PM, 3:49PM,
> 4:01PM.
Well, you could use the Quartz scheduling library (http://www.opensymphony.com/quartz/) which has a cron-like trigger mechanism or you could use the java.util.Timer class yourself, or even the java.util.concurrent.ScheduledExecutorService