我需要幫助來在特定時間(例如下午2點)在服務器上運行我的Java程序(以索引新文件)。在特定時間運行Java程序
有人告訴我,Java有一些東西叫做工作,但我不知道如何使用它。我試過這個:
boolean cond=true;
while(cond){
@SuppressWarnings("deprecation")
int heur = new Date().getHours();
@SuppressWarnings("deprecation")
int minute= new Date().getMinutes();
if(heur==16 && minute==02){
indexer.close();
end = new Date().getTime();
File f;
cond=false;
}
但是,這個程序仍在運行。
如何在特定時間運行我的程序?
PLZ格式的代碼正確 – Bohemian 2011-06-01 12:36:29