使用執行緒刪除匯出臨時檔案

2021-08-31 22:58:06 字數 930 閱讀 2711

基本**:

this.setdownloadfilepath(path);

this.setdownloadfilename("weboperate.xls");

return "download";

public class filedelete implements runnable 

@override

public void run() }}

}public string getfilepath()

public void setfilepath(string filepath)

public date getdate()

public void setdate(date date)

public int getflag()

public void setflag(int flag)

}

我的執行緒類,大致思路就是拿當前事件與執行時間比較,如果執行時間+設定的時間 小於當前時間的時候將檔案刪除

所以我現在只要這樣就搞定了

this.setdownloadfilepath(path);

this.setdownloadfilename("weboperate.xls");

//開啟執行緒定時刪除檔案

date date = new date();

filedelete filedelete = new filedelete(filepath,date);

thread t = new thread(filedelete);

t.start();

return "download";

如何使用臨時檔案

python為我們提供了乙個標準庫來處理臨時檔案,所誤謂臨時檔案就是寫在硬碟上,關機就刪除,臨時檔案分為有名字的和無名字的,分別對應為 temporaryfile namedtempporaryfile,這裡不討論python2.x寫法,form tempfile import temporaryf...

bash 臨時檔案

1.臨時檔案目錄 tmp 使用者可以隨時隨地利用mktemp命令建立臨時檔案與 tmp目錄,這個目錄在每次系統啟動時都會被清空,因此裡面的檔案都是臨時使用的 不能永久儲存 用完就不管的。任何賬戶都有權在 tmp目錄下建立臨時檔案,完整的讀寫許可權全都給建立它的屬主,並且其它賬戶無權訪問它。2.使用m...

android臨時檔案

activity 1.啟動乙個新的activity 會呼叫oncreate onstart onresume 2.onpause protected void oncreate protected void onstart 當activity被使用者看到時,呼叫 protected void onr...