码迷,mamicode.com
首页 > 其他好文 > 详细

定时器

时间:2017-10-29 11:19:57      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:void   sim   code   runtime   ack   nbsp   new   time()   ext   

import java.io.IOException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Timer;
import java.util.TimerTask;

public class MyTimer {

    public static void main(String[] args) {
        Timer t = new Timer();
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        TimerTask timerTask= new TimerTask() {
            
            @Override
            public void run() {
                try {
//                    Runtime.getRuntime().exec("notepad.exe d:/dd.txt");
                    Runtime.getRuntime().exec("cmd /k start C:\\Users\\lenovo\\Desktop\\tesst.bat");
                } catch (IOException e) {
                    e.printStackTrace();
                }
                t.cancel();
            }
        };
        try {
            t.schedule(timerTask, sdf.parse("2017-10-29 8:36:00"));
        } catch (ParseException e) {
            e.printStackTrace();
        }
    
    }

}

 

定时器

标签:void   sim   code   runtime   ack   nbsp   new   time()   ext   

原文地址:http://www.cnblogs.com/dengnapianhuahai/p/7749324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!