Is there a standard and reliable way of creating a temporary directory inside a Java application? There's an entry in Sun's issue database, which has a bit of code in the comments, but I wonder if there is a standard solution to be found in one of the usual libraries (Apache Commons etc.)
|
4
|
|||||||||
|
|
|
This should do it
You could make better exceptions (subclass IOException) if you want. |
|||
|
|
|
|
Using |
||||||
|
|
|
This is what I decided to do for my own code:
|
||
|
|
|
|
Do not use deleteOnExit() even if you explicitly delete it later. Google 'deleteonexit is evil' for more info, but the gist of the problem is: 1) deleteOnExit() only deletes for normal JVM shutdowns, not crashes or killing the JVM process. 2) deleteOnExit() only deletes on JVM shutdown - not good for long running server processes because: 3) The most evil of all - deleteOnExit() consumes memory for each temp file entry. If your process is running for months, or creates a lot of temp files in a short time, you consume memory and never release it until the JVM shuts down. |
||
|
|
