[
トップ|
一覧|
単語検索|
最終更新|
バックアップ|
ヘルプ]
import java.util.TimerTask;
public class SampleTask extends TimerTask {
public void run() {
}
}
final String DATE_FORMAT = "yyyyMMdd HH:mm:ss";
SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT);
Timer timer = new Timer();
TimerTask task = new SampleTask();
timer.schedule(task, sdf.parse("20040101 00:00:00"));
Timer timer = new Timer();
TimerTask task = new SampleTask();
timer.schedule(task, new Date(), 60000);
Modified by MT22(Moriwaki Takashi)
"PukiWiki" 1.3.7 Copyright © 2001,2002,2003 PukiWiki Developers Team. License is GNU/GPL.
Based on "PukiWiki" 1.3 by sng
Powered by PHP 7.4.33
HTML convert time to 0.003 sec.