定时任务Timer使用

[size=large]定时任务Timer使用:
Timer有两种执行任务的模式,最常用的是schedule
如果你使用的是JDK 5+,还有一个scheduleAtFixedRate模式可以用,
在这个模式下,Timer会尽量的让任务在一个固定的频率下运行
java代码:[/size]

public class StudyTimer {

static class MyTask extends TimerTask{

String info = "^_^";
@Override
public void run() {
System.out.println(info);
}
public String getInfo() {
return info;
}
public void setInfo(String info) {
this.info = info;
}

}

public static void main(String[] args){
Timer timer = new Timer();
MyTask task1 = new MyTask();
MyTask task2 = new MyTask();
task2.setInfo("myTask-2");
Calendar cal = Calendar.getInstance();
cal.set(Calendar.YEAR, 2013);
cal.set(Calendar.MINUTE, 50);
System.out.println("start:"+cal.getTime());
timer.schedule(task1, 1000,2000);
timer.scheduleAtFixedRate(task2, 2000, 3000);
while(true){
byte[] info = new byte[1024];
try {
int length = System.in.read(info);
String strInfo = new String(info,0,length,"GBK");
if (strInfo.startsWith("Cancel-1")) {
task1.cancel();
}else if(strInfo.startsWith("Cancel-2")){
task2.cancel();
}else if(strInfo.startsWith("Cancel-all")){
timer.cancel();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值
>