java 压缩文件

public static final String FILETYPE = ".zip";// 压缩文件类型


public static String compressedFile(String resourcePath, String targetPath, String fileName) {
File resourcesFile = new File(resourcePath);// 源文件路径
File targetFile = new File(targetPath); // 目标文件路径
if (!targetFile.exists()) {// 如果目标路径不存在,则新建
targetFile.mkdirs();
}
// 目的文件压缩名
UUID uuid = UUID.randomUUID();
String targetName = uuid.toString() + FILETYPE;
FileOutputStream outStream = null;
ZipOutputStream out = null;
try {
outStream = new FileOutputStream(targetPath + File.separator + targetName);
out = new ZipOutputStream(new BufferedOutputStream(outStream));
createCompressedFile(out, resourcesFile, "");
} catch (FileNotFoundException e) {
e.printStackTrace();
} finally {
if (out != null) {
try {
out.close();// 如果流不关闭,文件打包有错
} catch (IOException e) {
e.printStackTrace();
}
}
}
return targetName;


}


/**
* 生成压缩文件。 如果是文件夹,则使用递归,进行文件遍历、压缩 如果是文件,直接压缩

* @param out
* @param file
* @param dir
* @throws IOException
*/
public static void createCompressedFile(ZipOutputStream out, File file, String dir) {
FileInputStream fis = null;
try {
// 如果当前的是文件夹,则进行进一步处理
if (file.isDirectory()) {
// 得到文件列表信息
File[] files = file.listFiles();
// 将文件夹添加到下一级打包目录
//out.putNextEntry(new ZipEntry(dir + File.separator));
dir = dir.length() == 0 ? "" : dir + File.separator;
// 循环将文件夹中的文件打包
for (int i = 0; i < files.length; i++) {
createCompressedFile(out, files[i], dir + files[i].getName());// 递归处理
}
// 当前的是文件,打包处理
} else {
fis = new FileInputStream(file);
out.putNextEntry(new ZipEntry(dir));
int len = 0;
byte[] buffer = new byte[1024];
// 进行写操作
while ((len = fis.read(buffer)) > 0) {
out.write(buffer, 0, len);
}


}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (fis != null) {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}


}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值