运行时修改TimerTask的执行周期
编程技术  /  houtizong 发布于 3年前   72
/** * Period in milliseconds for repeating tasks. A positive value indicates * fixed-rate execution. A negative value indicates fixed-delay execution. * A value of 0 indicates a non-repeating task. */ long period = 0;
public abstract class ReschedulableTimerTask extends TimerTask {public void setPeriod(long period) {//缩短周期,执行频率就提高setDeclaredField(TimerTask.class, this, "period", period);}//通过反射修改字段的值static boolean setDeclaredField(Class<?> clazz, Object obj,String name, Object value) {try {Field field = clazz.getDeclaredField(name);field.setAccessible(true);field.set(obj, value);return true;} catch (Exception ex) {ex.printStackTrace();return false;}}}
import java.text.SimpleDateFormat;import java.util.Date;import java.util.Timer;import java.util.TimerTask;public class Tester {public static void main(String[] args){ReschedulableTimerTask task=new ReschedulableTimerTask() {@Overridepublic void run() {System.out.println("RunTime:"+new SimpleDateFormat("HH:mm:ss").format(new Date()));}};Timer timer=new Timer();timer.schedule(task, 2000, 2000);//每两秒执行一次try {Thread.sleep(6000);} catch (InterruptedException e) {}//主线程6秒后,更改任务周期task.setPeriod(1000);//改为每秒执行一次}}
请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!
技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成
网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];
文章归档
文章标签
友情链接