The Java timer is scheduled to perform tasks 1 o'clock in the morning every day

Source: Internet
Author: User
Import Java.util.TimerTask;
/**
 *
 @author ADMIN_HZW * */
 public
class Task extends TimerTask {public
	void run () {
  
   system.out.println ("I have a little donkey!"); 
	}

  

Import Java.util.Calendar;
Import Java.util.Date;

Import Java.util.Timer; /** * Task Management * @author ADMIN_HZW * */public class Timermanager {/** * @param args/public static void main (St  
	Ring[] args) {new Timermanager ();
	}//time interval (day) private static final Long Period_day = 24 * 60 * 60 * 1000;
		Public Timermanager () {Calendar calendar = calendar.getinstance (); Calendar.set (Calendar.hour_of_day, 1);
		1 o'clock in the morning Calendar.set (Calendar.minute, 0);
		Calendar.set (Calendar.second, 0); Date Date=calendar.gettime (); Time of the first scheduled task//If the first time the scheduled task is performed is less than the current time//The first time a scheduled task is performed at a single day, so that the task is performed at the next point in time.
		If the day is not added, the task is executed immediately.
		if (Date.before (new Date ())) {date = This.addday (date, 1);
		Timer timer = new timer ();
		Task task = new Task ();
		Schedules the specified task to begin repeating fixed-delay execution at a specified time.  
	Timer.schedule (Task,date,period_day);
		//Increase or decrease the number of days public date addday (date date, int num) {Calendar STARTDT = calendar.getinstance ();
		Startdt.settime (date); Startdt.add (Calendar.day_of_month, num);
		return Startdt.gettime ();
 }

}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.