java打包工具_(Java) 文件打包工具类

该代码段展示了如何使用Apache的ZipOutputStream类在Java中创建ZIP文件。它接受文件或目录路径,生成ZIP文件的保存路径以及一个布尔值,决定是否在打包后删除源文件。方法包括创建ZIP文件,写入ZIP文件,清理文件和文件夹,以及递归处理文件夹内容。
摘要由CSDN通过智能技术生成

packagecom.newpay.common;importorg.apache.tools.zip.ZipEntry;importorg.apache.tools.zip.ZipOutputStream;importorg.slf4j.Logger;importorg.slf4j.LoggerFactory;import java.io.*;/*** 打包生成压缩文件*/

public classPackUtils {private static final Logger log = LoggerFactory.getLogger(PackUtils.class);public static voidmain(String[] args) {

createZip("F:\\HelloWorld", "F:\\zyu.zip", false);

}/*** 创建ZIP文件

*

*@paramsourcePath 文件或文件夹路径

*@paramzipPath 生成的zip文件保存路径(包括文件名)

*@paramisDrop 是否删除原文件:true删除、false不删除*/

public static voidcreateZip(String sourcePath, String zipPath, Boolean isDrop) {

FileOutputStream fos= null;

ZipOutputStream zos= null;try{

fos= newFileOutputStream(zipPath);

zos= newZipOutputStream(fos);

zos.setEncoding("gbk");//此处修改字节码方式。//createXmlFile(sourcePath,"293.xml");

writeZip(new File(sourcePath), "", zos, isDrop);

}catch(FileNotFoundException e) {

log.error("创建ZIP文件失败", e);

}finally{try{if (zos != null) {

zos.close();

}

}catch(IOException e) {

log.error("创建ZIP文件失败", e);

}

}

}/*** 清空文件和文件目录

*

*@paramf*/

public static void clean(File f) throwsException {

String cs[]=f.list();if (cs == null || cs.length <= 0) {

System.out.println("delFile:[ " + f + " ]");boolean isDelete =f.delete();if (!isDelete) {

System.out.println("delFile:[ " + f.getName() + "文件删除失败!" + " ]");throw new Exception(f.getName() + "文件删除失败!");

}

}else{for (int i = 0; i < cs.length; i++) {

String cn=cs[i];

String cp= f.getPath() + File.separator +cn;

File f2= newFile(cp);if (f2.exists() &&f2.isFile()) {

System.out.println("delFile:[ " + f2 + " ]");boolean isDelete =f2.delete();if (!isDelete) {

System.out.println("delFile:[ " + f2.getName() + "文件删除失败!" + " ]");throw new Exception(f2.getName() + "文件删除失败!");

}

}else if (f2.exists() &&f2.isDirectory()) {

clean(f2);

}

}

System.out.println("delFile:[ " + f + " ]");boolean isDelete =f.delete();if (!isDelete) {

System.out.println("delFile:[ " + f.getName() + "文件删除失败!" + " ]");throw new Exception(f.getName() + "文件删除失败!");

}

}

}private static voidwriteZip(File file, String parentPath, ZipOutputStream zos, Boolean isDrop) {if(file.exists()) {if (file.isDirectory()) {//处理文件夹

parentPath += file.getName() +File.separator;

File[] files=file.listFiles();if (files.length != 0) {for(File f : files) {

writeZip(f, parentPath, zos, isDrop);

}

}else { //空目录则创建当前目录

try{

zos.putNextEntry(newZipEntry(parentPath));

}catch(IOException e) {//TODO Auto-generated catch block

e.printStackTrace();

}

}

}else{

FileInputStream fis= null;try{

fis= newFileInputStream(file);

ZipEntry ze= new ZipEntry(parentPath +file.getName());

zos.putNextEntry(ze);byte[] content = new byte[1024];intlen;while ((len = fis.read(content)) != -1) {

zos.write(content,0, len);

zos.flush();

}

}catch(FileNotFoundException e) {

log.error("创建ZIP文件失败", e);

}catch(IOException e) {

log.error("创建ZIP文件失败", e);

}finally{try{if (fis != null) {

fis.close();

}if(isDrop) {

clean(file);

}

}catch(IOException e) {

log.error("创建ZIP文件失败", e);

}catch(Exception e) {

e.printStackTrace();

}

}

}

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值