Check out the Timer Class
The method:
scheduleAtFixedRate(TimerTask task, Date firstTime, long period)
Schedules the specified task for repeated fixed-rate execution, beginning at the specified time.
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 TimerTask
that overloads the run() method. The run() method will contain the method you want to call.