NIO2
Files工具包下包含创建临时文件, 文件copy, move等API
1 Path tempFile = Files.createTempFile(null, ".tmp"); 2 // 不会自动删除, 除非重启机器 3 Files.deleteIfExists(tempFile);
@@@build beautiful things, share happiness@@@
Files工具包下包含创建临时文件, 文件copy, move等API
1 Path tempFile = Files.createTempFile(null, ".tmp"); 2 // 不会自动删除, 除非重启机器 3 Files.deleteIfExists(tempFile);