Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to execute a method on a specific date of every year, how could I do this in java?

Thanks,

Chris.

share|improve this question
did you mean to execute a method or an application (a java program)? – CoolBeans Nov 28 '10 at 3:36
Execute a method. – Chris Nov 28 '10 at 3:37
Is this application going to run forever? – birryree Nov 28 '10 at 3:39
Yes say on the 1st January of every year some method in Java is executed. – Chris Nov 28 '10 at 3:43
Is it a web application running in a servlet container? – BalusC Nov 28 '10 at 5:50

4 Answers

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.

share|improve this answer

In order of preference:

  1. The Quartz library (highly recommended).

  2. java.util.Timer. Not as powerful as Quartz, but good for simple jobs.

  3. The EJB timer service. It's poorly documented, it requires a full Java EE container, and it doesn't really do anything that Quartz doesn't.

share|improve this answer

If you need something more robust, you can also use Quartz for Cron like scheduling

share|improve this answer

This will get the current date and time.

import java.util.Date;
import java.text.DateFormat;
import java.text.SimpleDateFormat;

private String getDateTime() {
    DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
    Date date = new Date();
    return dateFormat.format(date);
}

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.

share|improve this answer
How could I code the if statement to work with the date? – Chris Nov 28 '10 at 3:53
I've made a prototype that I'm testing now. If it works I'll let you know. – Paul Nov 28 '10 at 4:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.