使用java执行定时任务示例
这是一个演示如何使用java执行定时任务的实例,本实例开始运行后不会自动结束,请在运行本实例后手动结束程序。
package com.hongyuan.test;
import java.awt.desktop;
import java.io.bufferedinputstream;
import java.io.bufferedreader;
import java.io.ioexception;
import java.io.inputstreamreader;
import java.net.uri;
import java.net.urisyntaxexception;
import java.nio.charset.charset;
import java.text.parseexception;
import java.text.simpledateformat;
import java.util.timer;
import java.util.timertask;
public class timertasktest {
public static void main(string[] args) throws parseexception {
timer timer=new timer();
simpledateformat sdf=new simpledateformat("yyyy-mm-dd hh:mm:ss");
//延迟指定时间后执行任务(以毫秒为单位)
timer.schedule(new timertask(){
@override
public void run() {
system.out.println("时间已经流逝1秒!!!!");
}
}, 1000);
//到达指定时间后执行任务
timer.schedule(new timertask(){
@override
public void run() {
try {
//打开浏览器
desktop.getdesktop().browse(new uri("http://www.baidu.com/"));
} catch (ioexception | urisyntaxexception e) {
e.printstacktrace();
}
}
}, sdf.parse("2014-04-20 10:20:00"));
//延迟指定时间后以指定频率开始执行任务
timer.schedule(new timertask(){
@override
public void run() {
bufferedinputstream in=null;
bufferedreader inbr=null;
try {
//执行系统命令
process p=runtime.getruntime().exec("ping www.baidu.com");
//读取输出
in = new bufferedinputstream(p.getinputstream());
inbr = new bufferedreader(new inputstreamreader(in,
charset.forname("gbk"))); //我的系统字符集为gbk
string linestr=null;
while ((linestr = inbr.readline()) != null){
//获得命令执行后在控制台的输出信息
system.out.println(linestr);// 打印输出信息
}
//检查命令是否执行失败。
if (p.waitfor() != 0) {
if (p.exitvalue() == 1)//p.exitvalue()==0表示正常结束,1:非正常结束
system.err.println("命令执行失败!");
}
} catch (ioexception e) {
e.printstacktrace();
} catch (interruptedexception e) {
e.printstacktrace();
} finally{
try {
inbr.close();
in.close();
} catch (ioexception e) {
e.printstacktrace();
}
}
}
}, 10000, 5000);
}
}
上一篇: J2SE与c#的几点比较