java代码实现压缩包的解压

实现解压的要求:

1、判断压缩包是否存在

2、判断是不是压缩包格式

3、如果解压后的文件名字与已有的文件名字相同,要与已有的文件进行比较

4、解压后的文件与已有文件比较:压缩包中没有的不修改,压缩包中有的,已有的文件中没有则新建,若两个都有,则把已有的文件删除,只留压缩包中的。

public class Test01 {
    public void unZip(String zipfile) {

        // 检查是否是zip文件,并判断文件是否存在

        checkFileName(zipfile);

        File zfile = new File(zipfile);

        // 获取待解压文件的父路径

        String Parent = zfile.getParent() + "/";

        Charset charset = Charset.forName("utf-8");// 默认UTF-8

        ZipInputStream zis = null;
        
        try {
            zis = new ZipInputStream(new FileInputStream(zipfile), charset);
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } // 输入源zip路径

        ZipEntry entry = null;

        BufferedOutputStream bos = null;

        try {
            while ((entry = zis.getNextEntry()) != null) {

                if (entry.isDirectory()) {
                    File filePath = new File(Parent + entry.getName());
                    // 如果目录不存在,则创建

                    if (!filePath.exists()) {

                        filePath.mkdirs();

                    }

                } else {

                    File filePath = new File(Parent + entry.getName());

                    if (filePath.exists()) { // 如果文件存在,那么将文件删除
                        filePath.delete();
                    }

                    FileOutputStream fos = new FileOutputStream(Parent + entry.getName());

                    bos = new BufferedOutputStream(fos);

                    byte buf[] = new byte[1024];

                    int len;

                    while ((len = zis.read(buf)) != -1) {

                        bos.write(buf, 0, len);

                    }

                    zis.closeEntry();

                    // 关闭的时候会刷新

                    bos.close();
                }

            }
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        try {
            zis.close();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    private void checkFileName(String name) {

        // 文件是否存在

        if (!new File(name).exists()) {

            System.err.println("要解压的文件不存在!");

            System.exit(1);

        }

        // 判断是否是zip文件

        int index = name.lastIndexOf(".");

        String str = name.substring(index + 1);

        if (!"zip".equalsIgnoreCase(str) ) {

            System.err.println("不是zip,无法解压!");

            System.exit(1);

        }

    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值