1
我在這裏發現了一些用於在Java中創建臨時目錄的代碼。刪除臨時目錄
public static File createTempDirectory() throws IOException
{
final File temp;
temp = File.createTempFile("temp", Long.toString(System.nanoTime()));
if(!(temp.delete()))
{
throw new IOException("Could not delete temp file: " + temp.getAbsolutePath());
}
if(!(temp.mkdir()))
{
throw new IOException("Could not create temp directory: " + temp.getAbsolutePath());
}
return temp;
}
如何在我的servlet的生命結束時處理這個臨時目錄並刪除它?
如何保持對它的靜態引用? – Matten 2011-02-18 09:57:25