6

I would like to be able to schedule a task at a specific time in Java. I understand that the ExecutorService has the ability to schedule at periodic intervals, and after a specified delay, but I am looking more for a time of day as opposed to after a duration.

Is there a way to have, say, a Runnable execute at 2:00, or do I need to calculate the time between now and 2:00, and then schedule the runnable to execute after that delay?

Ray
  • 4,829
  • 4
  • 28
  • 55
  • I'm really looking for a strictly Java solution. – Ray Nov 09 '11 at 14:05
  • +1 you can do this in all operating systems. Windows is irritating, but a simple script can execute the program from a scheduled task. A side effect is easy testing (you can just run it) and administration is trivial. – Daniel B. Chapman Nov 09 '11 at 14:07

6 Answers6

6

this is how I've solved it using java7SE:

    timer = new Timer("Timer", true);
    Calendar cr = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
    cr.setTimeInMillis(System.currentTimeMillis());
    long day = TimeUnit.DAYS.toMillis(1);
    //Pay attention - Calendar.HOUR_OF_DAY for 24h day model 
    //(Calendar.HOUR is 12h model, with p.m. a.m. )
    cr.set(Calendar.HOUR_OF_DAY, it.getHours());
    cr.set(Calendar.MINUTE, it.getMinutes());
    long delay = cr.getTimeInMillis() - System.currentTimeMillis();
    //insurance for case then time of task is before time of schedule
    long adjustedDelay = (delay > 0 ? delay : day + delay);
    timer.scheduleAtFixedRate(new StartReportTimerTask(it), adjustedDelay, day);
    //you can use this schedule instead is sure your time is after current time
    //timer.scheduleAtFixedRate(new StartReportTimerTask(it), cr.getTime(), day);

it happens to be trickier than I thought to do it correctly

theme
  • 361
  • 5
  • 7
6

you can use spring annotations too

@Scheduled(cron="*/5 * * * * MON-FRI")
public void doSomething() {
// something that should execute on weekdays only
}

http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/scheduling.html

Peter Szanto
  • 7,568
  • 2
  • 51
  • 53
4

You'll be wanting Quartz.

Duncan McGregor
  • 17,665
  • 12
  • 64
  • 118
2

Got myself on this situation this morning... This was my code to run at midnight

    scheduler = Executors.newScheduledThreadPool(1);
    Long midnight=LocalDateTime.now().until(LocalDate.now().plusDays(1).atStartOfDay(), ChronoUnit.MINUTES);
    scheduler.scheduleAtFixedRate(this, midnight, 1440,  TimeUnit.MINUTES);
Victor
  • 3,520
  • 3
  • 38
  • 58
0

Check out Quartz. We use it for our production apps, and it's very good. It works pretty much like crontab. You can specify a time during a set schedule and it'll execute a callback at that time.

Polynomial
  • 27,674
  • 12
  • 80
  • 107
0

user java.util.Timer. It has method new schedule(task, time) where time is a Date when you want to execute the task once.

AlexR
  • 114,158
  • 16
  • 130
  • 208
  • I was under the impression that `Timer` was considered obsolete with Java 5's `Executors`--is that mistaken? – Ray Nov 09 '11 at 14:14