如何在 java 6 中创建临时文件夹?
可能的重复:
在 Java 中创建临时目录
重复:stackoverflow.com/questions/375910
有没有办法在java中创建临时文件夹? 我知道 File 的静态方法 createTempFile,但这只会给我一个临时文件。
Possible Duplicate:
Create a temporary directory in Java
Duplicate: stackoverflow.com/questions/375910
Is there a way of creating a temporary folder in java ? I know of File's static method createTempFile, but this will only give me a temporary file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我从来没有见过一个好的解决方案,但这就是我所做的。
I've never seen a good solution for this, but this is how I've done it.
您无法使用 java.io.tmpdir 属性定义的目录有什么原因吗?
IE
Any reason you can't use the directory defined by the java.io.tmpdir property?
ie
我会查看 SO 中的这个过去的问题 寻求解决方案。 或者这个!
I would check out this past question in SO for a solution. Or this one!
我编写了自己的实用程序类,用于创建临时目录并在不再需要它们时将其处置。 例如像这样。
I write my own utility classes for creating temporary directories and for disposing them when they are not anymore needed. For example like this.