定时器
Posted 等那片花海
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了定时器相关的知识,希望对你有一定的参考价值。
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(); } } }
以上是关于定时器的主要内容,如果未能解决你的问题,请参考以下文章