I need to execute a method on a specific date of every year, how could I do this in java?
Thanks,
Chris.
|
|
Check out the Timer Class The method:
will allow you to do what you want. Just be sure you are using the correct date. Looking at the API, you will need to define a |
|||
|
|
|
In order of preference:
|
|||
|
|
|
If you need something more robust, you can also use Quartz for Cron like scheduling |
|||
|
|
|
This will get the current date and time.
Then make a loop that checks the function every second and use an if statement to execute the code you want if the time is the time you want. |
|||