码迷,mamicode.com
首页 > 其他好文 > 详细

打包并删除临时文件

时间:2019-12-18 14:35:52      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:int   size   pfile   uid   pat   ring   get   文件   col   

//4、压缩打包
String uuid = UUID.randomUUID().toString();
String zipFile = prePath + "/docx/" + uuid + ".zip";
ZipUtil.zip(file_list, zipFile);

//5、删除临时文件
for (int i = 0; i < file_list.size(); i++) {
File file = new File(file_list.get(i));
file.delete();
}

打包并删除临时文件

标签:int   size   pfile   uid   pat   ring   get   文件   col   

原文地址:https://www.cnblogs.com/littlehb/p/12059596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!