百木园-与人分享,
就是让自己快乐。

java中定时器模拟数据库备份

package dingShiTask;

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;

public class TimerTest {
    public static void main(String[] args) throws Exception{
        //创建定时器对象
        Timer timer = new Timer();
        //Timer timer = new Timer(true);//守护线程的方式

        //指定定时任务
        //timer.schedule(定时任务,第一次执行时间,间隔多久执行一次);
        SimpleDateFormat sdf = new SimpleDateFormat(\"yyyy-MM-dd HH:mm:ss\");
        Date firstTime = sdf.parse(\"2021-3-17 11:24:30\");
        timer.schedule(new LogTimerTask(),firstTime,1000);
    }
}
//编写一个类
//假设这是一个记录日志的定时任务
class LogTimerTask extends TimerTask{
    @Override
    public void run() {
        //编写需要执行的任务就行了。
        SimpleDateFormat sdf = new SimpleDateFormat(\"yyyy-MM-dd HH:mm:ss\");
        String strTime = sdf.format(new Date());
        System.out.println(strTime +\":成功完成第一次数据备份!\");
    }
}

  


来源:https://www.cnblogs.com/xianz666/p/15958253.html
本站部分图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » java中定时器模拟数据库备份

相关推荐

  • 暂无文章