我創建的是在每天進行一定時間運行的程序,獲取工作日
,但我想這個節目停在一些特定的天(一週結束),
我用下面的代碼設置當前時間,
public int GetDateNow()
{
Calendar currentdate = Calendar.getInstance();
DateFormat dateformat = new SimpleDateFormat("HHmm");
String datenow = dateformat.format(currentdate.getTime());
int DN=Integer.parseInt(datenow);
return DN;
}
和下面的代碼的主類
while(true)
{
Thread.sleep(1*1000);
if(gt.GetDateNow()==0000)
{
//perform action
}
}
後工作正常-1這是[第一個結果](http://www.google。 com/search?q = java%20get%20week%20day)... – Anko