Codziennie o 5 rano staram się wykonać określone zadanie. Postanowiłem więc użyć ScheduledExecutorService
do tego, ale do tej pory widziałem przykłady, które pokazują, jak uruchamiać zadanie co kilka minut.
I nie jestem w stanie znaleźć żadnego przykładu, który pokazuje, jak uruchamiać zadanie codziennie o określonej godzinie (5 rano) rano, a także biorąc pod uwagę fakt czasu letniego -
Poniżej znajduje się mój kod, który będzie uruchamiany co 15 minut -
public class ScheduledTaskExample {
private final ScheduledExecutorService scheduler = Executors
.newScheduledThreadPool(1);
public void startScheduleTask() {
/**
* not using the taskHandle returned here, but it can be used to cancel
* the task, or check if it's done (for recurring tasks, that's not
* going to be very useful)
*/
final ScheduledFuture<?> taskHandle = scheduler.scheduleAtFixedRate(
new Runnable() {
public void run() {
try {
getDataFromDatabase();
}catch(Exception ex) {
ex.printStackTrace(); //or loggger would be better
}
}
}, 0, 15, TimeUnit.MINUTES);
}
private void getDataFromDatabase() {
System.out.println("getting data...");
}
public static void main(String[] args) {
ScheduledTaskExample ste = new ScheduledTaskExample();
ste.startScheduleTask();
}
}
Czy jest sposób, aby zaplanować uruchamianie zadania codziennie o 5 rano, ScheduledExecutorService
biorąc pod uwagę również czas letni?
A także TimerTask
jest lepszy do tego lub ScheduledExecutorService
?