इस तरह आजमाएं ->
सबसे पहले एक क्लास टाइमटेस्क बनाएं जो आपके कार्य को चलाता है, ऐसा दिखता है:
public class CustomTask extends TimerTask {
public CustomTask(){
//Constructor
}
public void run() {
try {
// Your task process
} catch (Exception ex) {
System.out.println("error running thread " + ex.getMessage());
}
}
}
तब मुख्य वर्ग में आप कार्य को तत्काल करते हैं और इसे निर्धारित तिथि तक समय-समय पर शुरू करते हैं:
public void runTask() {
Calendar calendar = Calendar.getInstance();
calendar.set(
Calendar.DAY_OF_WEEK,
Calendar.MONDAY
);
calendar.set(Calendar.HOUR_OF_DAY, 15);
calendar.set(Calendar.MINUTE, 40);
calendar.set(Calendar.SECOND, 0);
calendar.set(Calendar.MILLISECOND, 0);
Timer time = new Timer(); // Instantiate Timer Object
// Start running the task on Monday at 15:40:00, period is set to 8 hours
// if you want to run the task immediately, set the 2nd parameter to 0
time.schedule(new CustomTask(), calendar.getTime(), TimeUnit.HOURS.toMillis(8));
}
TimeUnit
दोनोंinitialDelay
और पर लागू होता हैperiod
। हर 24 घंटे में चल रहा है खत्म हो जाएगा उतार फेंका गया जा रहा है जब, लेकिन एक में डीएसटी किकTimeUnit
कीDAYS
आप एक ठीक-कणों का निर्दिष्ट नहीं करता हैinitialDelay
। (मुझे लगता है कि आंतरिक शेड्यूल्डDAYS
एक्सिकॉरसर्विस कार्यान्वयन वैसे भी नैनोसेकंडों में परिवर्तित होता है)।