DO NOT EVER use deleteOnExit(). Especially not in something like a web app,
which has an indeterminate but generally long lifetime. Consider the API
removed from Java. Period.
Instead, use the PhantomReference-based code that I contributed to Jakarta
Commons. (A) it works. (B) it cleans up during runtime, rather than
whenever the JVM should happen to exit cleanly through the right path. (C)
It doesn't leak memory like a pig.
--- Noel
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]