在實際應用中很多情況需要定時運行程序
Timer的定義
然後是設置時間間隔執行程序
class TimerTaskTest extends TimerTask
{
public void run()
{
System
}
}
其中schedule函數的解釋
long delay
long period)
安排指定的任務從指定的延遲後開始進行重復的固定延遲執行
代碼
public static void main(String[] args) throws SQLException
{
// TODO Auto
Timer timer = new Timer();
//排指定的任務從指定的延遲後開始進行重復的固定延遲執行
timer
try
{
Thread
}
catch(Exception ex)
{
timer
}
}
class TimerTaskTest extends TimerTask
{
public void run()
{
System
}
}
運行程序輸出
make it!
make it!
make it!
make it!
From:http://tw.wingwit.com/Article/program/Java/hx/201311/25787.html