Java timer: How to set a specified date and time to execute a task?
When developing Java applications, timing tasks is a common requirement. For example, perform specific tasks at a specific date and time, such as sending scheduled emails, generating reports, etc. Java provides a variety of ways to implement scheduled tasks, the most commonly used of which are Timer and ScheduledExecutorService.
This article will focus on how to use Timer and ScheduledExecutorService to execute tasks on a specified date and time, and provide specific code examples.
1. Use the Timer class
The Timer class is the most original timer implementation in Java, which allows developers to perform tasks at specified dates and times. The following is a code example that uses the Timer class to perform tasks regularly:
import java.util.Timer; import java.util.TimerTask; import java.util.Date; public class TimerExample { public static void main(String[] args) { Timer timer = new Timer(); // 设置要执行的任务 TimerTask task = new TimerTask() { public void run() { System.out.println("执行任务"); } }; // 设置任务的执行时间 Date executeTime = new Date(); executeTime.setYear(121); // 设置年份(从1900年开始计算,所以要减去1900) executeTime.setMonth(11); // 设置月份(取值范围为0-11,所以要减去1) executeTime.setDate(31); // 设置日期 executeTime.setHours(23); // 设置小时 executeTime.setMinutes(59); // 设置分钟 executeTime.setSeconds(0); // 设置秒数 // 启动定时器,执行任务 timer.schedule(task, executeTime); } }
In the above code, we first create a Timer object, then create an anonymous class instance inherited from TimerTask, and override the run method in it, The method is the task to be performed. Then, we create a Date object and set the date and time we want to perform the task. Finally, use the timer.schedule method to set the execution time of the task, start the timer, and the task will be executed at the specified date and time.
2. Use the ScheduledExecutorService interface
Java 5 introduces a more flexible and efficient way to execute tasks regularly - the ScheduledExecutorService interface. The following is a code example that uses the ScheduledExecutorService interface to perform tasks regularly:
import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.TimeUnit; public class ScheduledExecutorServiceExample { public static void main(String[] args) { ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1); // 设置要执行的任务 Runnable task = new Runnable() { public void run() { System.out.println("执行任务"); } }; // 设置任务的执行时间 long delay = 1; // 延迟1秒执行 long period = 24 * 60 * 60; // 每隔24小时执行一次 // 启动定时器,执行任务 scheduler.scheduleAtFixedRate(task, delay, period, TimeUnit.SECONDS); } }
In the above code, we first create a ScheduledExecutorService object using the newScheduledThreadPool method of the Executors class. Then, we create an anonymous class instance that implements the Runnable interface and override the run method, which is the task to be performed. Next, we set the delayed execution time and execution interval of the task, and use the scheduler.scheduleAtFixedRate method to set the scheduled task and start the timer.
Summary:
This article focuses on two ways to implement Java timers, using the Timer class and the ScheduledExecutorService interface. During project development, we choose appropriate timing task implementation methods based on specific needs. Using a timer allows us to easily perform tasks on a specified date and time, helping us improve the automation and efficiency of the system.
(Note: The above examples are for reference only. Please adjust and expand according to specific needs in actual applications.)
The above is the detailed content of Java timer: How to trigger a task on a specified date and time?. For more information, please follow other related articles on the PHP Chinese website!

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1
Powerful PHP integrated development environment
