java定时器(每天定时执行 每月某天执行)

每天定时执行(方法1)

public class DayInterval implements ServletContextListener{
	public static void showDayTime() {
		Date sendDate = new Date();
		Timer dTimer = new Timer();
		dTimer.schedule(new TimerTask() {
			@Override
			public void run() {
				Calendar c = Calendar.getInstance();
				int hour = c.get(Calendar.HOUR_OF_DAY);
				int minutes = c.get(Calendar.MINUTE);
				if (hour == 11 && minutes == 38) {
					// 每天执行,若为11:38
					System.out.println("每日任务已执行");
				}
			}
		}, sendDate, 24* 60* 60 * 1000);//设置24小时执行一次
	}
	
	public static void main(String[] args) {
		showDayTime();
	}

	@Override
	public void contextDestroyed(ServletContextEvent arg0) {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void contextInitialized(ServletContextEvent arg0) {
		showDayTime();
		
	}

每天定时执行(方法2)

public static void showDayTime() {
            Calendar calendar = Calendar.getInstance();
		int year = calendar.get(Calendar.YEAR);
		int month = calendar.get(Calendar.MONTH);
		int day = calendar.get(Calendar.DAY_OF_MONTH);

		calendar.set(year, month, day, 10, 44, 00);//设置要执行的日期时间

		Date defaultdate = calendar.getTime();

		Timer dTimer = new Timer();
		dTimer.schedule(new TimerTask() {
		@Override
		public void run() {	
		     System.out.println("每日任务已经执行");
		}
		}, defaultdate , 24* 60* 60 * 1000);//24* 60* 60 * 1000
	}
	
	public static void main(String[] args) {
		showDayTime();
	}

每月定时执行

public static void showMonthTime() {
		Date sendDate = new Date();
		
		Timer dTimer = new Timer();
		dTimer.schedule(new TimerTask() {
			@Override
			public void run() {
				Calendar c = Calendar.getInstance();
				int day = c.get(Calendar.DAY_OF_MONTH);
				if (day == 30) {
					// 每天执行,若为每月30号才执行
					System.out.println("每月定时任务已执行");
				}
			}
		}, sendDate,  24* 60* 60 * 1000);//24* 60* 60 * 1000
	}
	
	public static void main(String[] args) {
		showMonthTime();
	}

 

  • 1
    点赞
  • 44
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值