博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java.io.File.deleteOnExit()-生成临时文件,删除临时文件
阅读量:6263 次
发布时间:2019-06-22

本文共 1293 字,大约阅读时间需要 4 分钟。

hot3.png

The java.io.File.deleteOnExit() method deletes the file or directory defined by the abstract path name when the virtual machine terminates. Files or directories are deleted in the reverse order as they are registered.

Exception

  • SecurityException -- If SecurityManager.checkWrite(java.lang.String) method denies delete access to the file

Example

The following example shows the usage of java.io.File.deleteOnExit() method.

package com.yuan.test;import java.io.File;public class FileDemo {   public static void main(String[] args) {      File f = null;                 try{         // creates temporary file         f = File.createTempFile("tmp", ".txt");                  // prints absolute path         System.out.println("File path: "+f.getAbsolutePath());                  // deletes file when the virtual machine terminate          f.deleteOnExit();                  // creates temporary file         f = File.createTempFile("tmp", null);                  // prints absolute path         System.out.print("File path: "+f.getAbsolutePath());                  // deletes file when the virtual machine terminate         f.deleteOnExit();               }catch(Exception e){         // if any error occurs         e.printStackTrace();      }   }}

转载于:https://my.oschina.net/u/2308739/blog/402056

你可能感兴趣的文章
变量使用self.foo还是_foo
查看>>
Codeforces Testing Round #12 B. Restaurant 贪心
查看>>
2015第47周五
查看>>
CSS-设置Footer始终在页面底部
查看>>
判断一个字符串同时出现几个字符的C#版本和JS版本
查看>>
asp.net获取客户端浏览器及主机信息
查看>>
jstack和线程dump分析
查看>>
如何使用Win8系统自带杀毒软件
查看>>
(转)No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=arm64, VA 解决办法
查看>>
GCD
查看>>
淘宝UWP--自定义图片缓存
查看>>
Javascript构造函数
查看>>
php--某个字符在字符串中的位置比较
查看>>
一个类有两个方法,其中一个是同步的,另一个是非同步的; 现在又两个线程A和B,请问:当线程A访问此类的同步方法时,线程B是否能访问此类的非同步方法?...
查看>>
[LeetCode] Maximum Product of Word Lengths 单词长度的最大积
查看>>
socket通信中select函数的使用和解释
查看>>
JAVA Map集合类简介
查看>>
c++实现gray code(格雷码)
查看>>
Spark1.4.1 编译与安装
查看>>
epub显示特殊字体
查看>>