<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    athrunwang

    紀元
    數據加載中……
    使用org.apache.tools.zip實現zip壓縮和解壓
    原創作品,允許轉載,轉載時請務必以超鏈接形式標明文章 原始出處 、作者信息和本聲明。否則將追究法律責任。http://wintys.blog.51cto.com/425414/90878
    import java.io.*;
    import org.apache.tools.zip.*;
    import java.util.Enumeration;
    /**
    *功能:zip壓縮、解壓(支持中文文件名)
    *說明:本程序通過使用Apache Ant里提供的zip工具org.apache.tools.zip實現了zip壓縮和解壓功能.
    *   解決了由于java.util.zip包不支持漢字的問題。
    *   使用java.util.zip包時,當zip文件中有名字為中文的文件時,
    *   就會出現異常:"Exception  in thread "main " java.lang.IllegalArgumentException  
    *               at   java.util.zip.ZipInputStream.getUTF8String(ZipInputStream.java:285)
    *注意:
    *   1、使用時把ant.jar放到classpath中,程序中使用import org.apache.tools.zip.*;
    *   2、Apache Ant 下載地址:[url]http://ant.apache.org/[/url]
    *   3、Ant ZIP API:[url]http://www.jajakarta.org/ant/ant-1.6.1/docs/mix/manual/api/org/apache/tools/zip/[/url]
    *   4、本程序使用Ant 1.7.1 中的ant.jar
    *
    *僅供編程學習參考.
    *
    *@author Winty
    *@date   2008-8-3
    *@Usage:
    *   壓縮:java AntZip -zip "directoryName"
    *   解壓:java AntZip -unzip "fileName.zip"
    */

    public class AntZip{
        private ZipFile         zipFile;
        private ZipOutputStream zipOut;     //壓縮Zip
        private ZipEntry        zipEntry;
        private static int      bufSize;    //size of bytes
        private byte[]          buf;
        private int             readedBytes;
        
        public AntZip(){
            this(512);
        }

        public AntZip(int bufSize){
            this.bufSize = bufSize;
            this.buf = new byte[this.bufSize];
        }
        
        //壓縮文件夾內的文件
        public void doZip(String zipDirectory){//zipDirectoryPath:需要壓縮的文件夾名
            File file;
            File zipDir;

            zipDir = new File(zipDirectory);
            String zipFileName = zipDir.getName() + ".zip";//壓縮后生成的zip文件名

            try{
                this.zipOut = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(zipFileName)));
                handleDir(zipDir , this.zipOut);
                this.zipOut.close();
            }catch(IOException ioe){
                ioe.printStackTrace();
            }
        }

        //由doZip調用,遞歸完成目錄文件讀取
        private void handleDir(File dir , ZipOutputStream zipOut)throws IOException{
            FileInputStream fileIn;
            File[] files;

            files = dir.listFiles();
        
            if(files.length == 0){//如果目錄為空,則單獨創建之.
                //ZipEntry的isDirectory()方法中,目錄以"/"結尾.
                this.zipOut.putNextEntry(new ZipEntry(dir.toString() + "/"));
                this.zipOut.closeEntry();
            }
            else{//如果目錄不為空,則分別處理目錄和文件.
                for(File fileName : files){
                    //System.out.println(fileName);

                    if(fileName.isDirectory()){
                        handleDir(fileName , this.zipOut);
                    }
                    else{
                        fileIn = new FileInputStream(fileName);
                        this.zipOut.putNextEntry(new ZipEntry(fileName.toString()));

                        while((this.readedBytes = fileIn.read(this.buf))>0){
                            this.zipOut.write(this.buf , 0 , this.readedBytes);
                        }

                        this.zipOut.closeEntry();
                    }
                }
            }
        }

        //解壓指定zip文件
        public void unZip(String unZipfileName){//unZipfileName需要解壓的zip文件名
            FileOutputStream fileOut;
            File file;
            InputStream inputStream;

            try{
                this.zipFile = new ZipFile(unZipfileName);

                for(Enumeration entries = this.zipFile.getEntries(); entries.hasMoreElements();){
                    ZipEntry entry = (ZipEntry)entries.nextElement();
                    file = new File(entry.getName());

                    if(entry.isDirectory()){
                        file.mkdirs();
                    }
                    else{
                        //如果指定文件的目錄不存在,則創建之.
                        File parent = file.getParentFile();
                        if(!parent.exists()){
                            parent.mkdirs();
                        }

                        inputStream = zipFile.getInputStream(entry);

                        fileOut = new FileOutputStream(file);
                        while(( this.readedBytes = inputStream.read(this.buf) ) > 0){
                            fileOut.write(this.buf , 0 , this.readedBytes );
                        }
                        fileOut.close();

                        inputStream.close();
                    }    
                }
                this.zipFile.close();
            }catch(IOException ioe){
                ioe.printStackTrace();
            }
        }

        //設置緩沖區大小
        public void setBufSize(int bufSize){
            this.bufSize = bufSize;
        }

        //測試AntZip類
        public static void main(String[] args)throws Exception{
            if(args.length==2){
                String name = args[1];
                AntZip zip = new AntZip();

                if(args[0].equals("-zip"))
                    zip.doZip(name);
                else if(args[0].equals("-unzip"))
                    zip.unZip(name);
            }
            else{
                System.out.println("Usage:");
                System.out.println("壓縮:java AntZip -zip directoryName");
                System.out.println("解壓:java AntZip -unzip fileName.zip");
                throw new Exception("Arguments error!");
            }
        }
    }

    posted on 2012-01-03 17:32 AthrunWang 閱讀(1553) 評論(0)  編輯  收藏


    只有注冊用戶登錄后才能發表評論。


    網站導航:
     
    主站蜘蛛池模板: 免费无遮挡无码永久视频| 国产精品公开免费视频| 3d动漫精品啪啪一区二区免费| 麻花传媒剧在线mv免费观看| 亚洲AV永久无码精品| 成人区精品一区二区不卡亚洲| 九九久久精品国产免费看小说| 久久免费观看国产99精品| 成人免费视频国产| 亚洲日韩中文字幕在线播放| 亚洲人成综合网站7777香蕉| 成年免费大片黄在线观看岛国| 亚洲人成精品久久久久| eeuss免费影院| 精品久久久久久久免费人妻| 亚洲AV电影院在线观看| 黄色大片免费网站| 美女视频黄a视频全免费| 浮力影院亚洲国产第一页| 亚洲最大av资源站无码av网址| 国产午夜无码片免费| 成人免费无码大片a毛片| 亚洲精品无码AV人在线播放 | 免费夜色污私人影院网站电影 | 57pao国产成视频免费播放 | 无码天堂va亚洲va在线va| 91九色老熟女免费资源站| 亚洲精品乱码久久久久久自慰| 视频免费在线观看| 亚洲国产一成久久精品国产成人综合 | 亚洲码国产精品高潮在线| 免费在线看黄的网站| 久久精品国产精品亚洲艾草网美妙| 又黄又大的激情视频在线观看免费视频社区在线 | 国产亚洲高清不卡在线观看| 日日麻批免费40分钟无码| 亚洲中文字幕无码久久| 亚洲国产aⅴ综合网| 国产精品亚洲а∨无码播放不卡| 亚洲成在人线aⅴ免费毛片| 日本系列1页亚洲系列|