I have an application that needs to play some specifics audios(mp3) periodically. Let me give one example: Every Monday at 8:00am -> hello.mp3. How can I do that in Java?? I´m trying using Calendar, JodaTime, but I cant do it.
|
Depends, if you are using Java EE, you can use EJB Timer. And there is always Quartz http://www.quartz-scheduler.org/ |
||||
|
|
What you want is a scheduled task. Timer class can provide this for you. Here is an example to get you started example |
|||
|
|
|
What a If you use Spring in your application, it has a scheduling module that can keep your Quartz code even cleaner. |
|||
|
|
|
You should use If you use Spring, you can use its scheduling service (it can be configured to use either Quartz Scheduler or If you run desktop App, the easiest way is to use |
|||
|
|