java文件解压缩技术探讨

文件解压缩技术探讨

java解压缩技术主要分为zip、gzip、tar技术等,该文章主要是阐述一下以上三种解压缩技术的具体实现。

一、zip技术的实现

zip技术是java自带的解压缩技术,也是winsdows系统非常常用的一种解压缩技术,在linux系统也无需装任何软件即可以解压。

zip压缩

zip压缩,可以压缩带文件夹的文件,主要是通过递归来对文件夹进行压缩

    /**
     * zip压缩
     * @param sourcePath
     * @param targetPath
     */
    public static void createZip(String sourcePath, String targetPath) {
        //获取该目录下所有文件以及文件夹
        try (ZipOutputStream zipOutputStream = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(new File(targetPath))))) {
            zipOperation(zipOutputStream,new File(sourcePath),"");
        } catch (IOException e) {
            log.error("createZip exception", e);
        }

    }
    
    
    /**
     * 压缩具体操作
     * @param zipOutputStream
     * @param file
     * @param path
     */
    private static void zipOperation(ZipOutputStream zipOutputStream,File file,String path){
        // 如果是目录,则递归进行处理
        if(file.isDirectory()) {
            File[] files = file.listFiles();
            for (File tempFile : files) {
                zipOperation(zipOutputStream, tempFile,path + "/" + tempFile.getName());
            }
        }
        else{
            // 如果是单个文件,再进行压缩
            try (BufferedInputStream inputStream = new BufferedInputStream(new FileInputStream(file))) {
                ZipEntry entry = new ZipEntry(path);
                zipOutputStream.putNextEntry(entry);

                int len;
                byte[] buffer = new byte[1024];
                while ((len = inputStream.read(buffer)) > 0) {
                    zipOutputStream.write(buffer, 0, len);
                }
                zipOutputStream.closeEntry();
            }catch (Exception e){
                log.error("zipOperation exception", e);
            }
        }


    }

zip解压

zip解压,如果压缩包里包含文件夹,则也会解压到对应的文件夹。

    /**
     * 解压zip文件
     * @param sourcePath
     * @param targetPath
     */
    public static void unZip(String sourcePath,String targetPath){
        File targetFile = new File(targetPath);
        // 如果目录不存在,则创建
        if(!targetFile.exists()){
            targetFile.mkdirs();
        }
        try(ZipFile zipFile = new ZipFile(new File(sourcePath))) {
            Enumeration enumeration = zipFile.entries();
            while(enumeration.hasMoreElements()){
                ZipEntry entry = (ZipEntry) enumeration.nextElement();
                String name = entry.getName();
                if(entry.isDirectory()){
                    continue;
                }
                try(BufferedInputStream inputStream = new BufferedInputStream(zipFile.getInputStream(entry))){
                    // 需要判断文件所在的目录是否存在,处理压缩包里面有文件夹的情况
                    String outName = targetPath + "/" + name;
                    File outFile = new File(outName);
                    File tempFile = new File(outName.substring(0,outName.lastIndexOf("/")));
                    if (!tempFile.exists()){
                        tempFile.mkdirs();
                    }
                    try (BufferedOutputStream outputStream = new BufferedOutputStream(new FileOutputStream(outFile))){
                        int len;
                        byte[] buffer = new byte[1024];
                        while((len = inputStream.read(buffer)) > 0){
                            outputStream.write(buffer,0,len);
                        }
                    }

                }

            }

        } catch (Exception e){
            log.error("unzip exception", e);
        }
    }

二、tar技术

在linux系统,我们最常见的是tar.gz压缩包,tar技术类似于gz技术,可以理解为将文件进行打包,tar解压缩需要引入org.apache.ant包。

tar压缩

tar压缩,就是可以将文件进行压缩。

    /**
     * tar压缩
     * @param sourcePath
     * @param targetPath
     */
    public static void tarFile(String sourcePath,String targetPath){
        try(TarOutputStream tarOutputStream = new TarOutputStream(new FileOutputStream(new File(targetPath))) ){
            tarOperation(tarOutputStream,new File(sourcePath),"");
        }catch (Exception e){
            log.error("tarFile exception", e);
        }
    }
    

    /**
     * tar压缩具体操作
     * @param tarOutputStream
     * @param file
     * @param path
     */
    private static void tarOperation(TarOutputStream tarOutputStream, File file, String path){
        // 如果是目录,则递归进行处理
        if(file.isDirectory()) {
            File[] files = file.listFiles();
            for (File tempFile : files) {
                tarOperation(tarOutputStream, tempFile,path + "/" + tempFile.getName());
            }
        }
        else{
            // 如果是单个文件,再进行压缩
            try (BufferedInputStream inputStream = new BufferedInputStream(new FileInputStream(file))) {
                //TarEntry entry = new TarEntry(path);
                // 如果不设置size,会出现request to write '1024' bytes exceeds size in header of '0' bytes for entry错误
                //entry.setSize(file.length());
                TarEntry entry = new TarEntry(file);
                tarOutputStream.putNextEntry(entry);

                int len;
                byte[] buffer = new byte[1024];
                while ((len = inputStream.read(buffer)) > 0) {
                    tarOutputStream.write(buffer, 0, len);
                }
                tarOutputStream.closeEntry();
            }catch (Exception e){
                log.error("zipOperation exception", e);
            }
        }


    }

tar解压

tar解压

    /**
     * tar解压
     * @param sourcePath
     * @param targetPath
     */
    public static void unTarFile( String sourcePath,String targetPath){
        File targetFile = new File(targetPath);
        // 如果目录不存在,则创建
        if(!targetFile.exists()){
            targetFile.mkdirs();
        }
        try(TarInputStream tarInputStream = new TarInputStream(new FileInputStream(new File(sourcePath)))){
            TarEntry entry = null;
            while ((entry = tarInputStream.getNextEntry()) != null){
                if(entry.isDirectory()){
                    continue;
                }
                String name = targetPath + "/" + entry.getName();
                // 需要判断文件所在的目录是否存在,处理压缩包里面有文件夹的情况
                File tempFile = new File(name.substring(0,name.lastIndexOf("/")));
                if (!tempFile.exists()){
                    tempFile.mkdirs();
                }
                try (BufferedOutputStream outputStream = new BufferedOutputStream(new FileOutputStream(new File(name)))){
                    int len;
                    byte[] buffer = new byte[1024];
                    while((len = tarInputStream.read(buffer)) > 0){
                        outputStream.write(buffer,0,len);
                    }
                }

            }

        }catch (Exception e){
            log.error("unTarFile exception", e);
        }
    }

三、gz技术

gz技术,可以理解为将文件进行压缩,gz技术只能对单一文件进行压缩,不能同时压缩多文件,所以我们一般会把多个文件打包成一个tar包,然后再使用gz进行压缩。

gz压缩

    public static void gzFile(String sourcePath,String targetPath){
        try(BufferedInputStream in = new BufferedInputStream(new FileInputStream(new File(sourcePath)));
            GZIPOutputStream outputStream = new GZIPOutputStream(new FileOutputStream(new File(targetPath)))){
            byte[] buffer = new byte[1024];
            int len;
            while((len = in.read(buffer)) > 0){
                outputStream.write(buffer,0,len);
            }

        }catch (Exception e){
            log.error("gzFile exception",e);
        }
    }

gz解压

    /**
     * 解压tar.gz文件
     * @param sourcePath
     * @param targetPath
     */
    public static void unGzFile(String sourcePath,String targetPath){
        String name = sourcePath.substring(sourcePath.lastIndexOf("/") + 1,sourcePath.length());
        String tarName = targetPath + name.substring(0,name.lastIndexOf("."));
        try(GZIPInputStream inputStream = new GZIPInputStream(new FileInputStream(new File(sourcePath)));
            BufferedOutputStream outputStream = new BufferedOutputStream(new FileOutputStream(new File(tarName)))){
            byte[] buffer = new byte[1024];
            int len;
            while((len = inputStream.read(buffer)) > 0){
                outputStream.write(buffer,0,len);
            }
            outputStream.flush();
            unTarFile(tarName,targetPath);

        }catch (Exception e){
            log.error("unGzFile exception",e);
        }
    }

四、测试

使用junti来进行测试

    @Test
    public void zipTest(){
        // zip压缩
        /*String sourcePath = "/data/jsp/springTest/logs/";
        String targePath = "/data/jsp/springTest/logs.zip";
        ZipUtil.createZip(sourcePath,targePath);*/

        // zip解压
        /*String sourcePath = "/data/jsp/springTest/logs.zip";
        String targetPath = "/data/jsp/springTest/uzlogs";
        ZipUtil.unZip(sourcePath,targetPath);*/


        // tar压缩
        /*String sourcePath = "/data/jsp/springTest/logs/";
        String targetPath = "/data/jsp/springTest/logs.tar";
        TarGzUtil.tarFile(sourcePath,targetPath);*/

        // tara解压
        /*String sourcePath = "/data/jsp/springTest/logs.tar";
        String targetPath = "/data/jsp/springTest/untarLogs/";
        TarGzUtil.unTarFile(sourcePath,targetPath);*/

        // gz压缩
        /*String sourcePath = "/data/jsp/springTest/logs.tar";
        String targetPath = "/data/jsp/springTest/logs.tar.gz";
        TarGzUtil.gzFile(sourcePath,targetPath);*/

        // gz解压
        String sourcePath = "/data/jsp/springTest/logs.tar.gz";
        String targetPath = "/data/jsp/";
        TarGzUtil.unGzFile(sourcePath,targetPath);

    }

源码

gtihub地址:https://github.com/wumingzhizhu/springTest

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容