`
wgcode
  • 浏览: 601675 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

nochump.util.zip压缩和解压缩使用方法

阅读更多

/*
2 nochump.util.zip.ZipOutput
3 Copyright (C) 2007 David Chang (dchang@nochump.com)

5 This file is part of nochump.util.zip.

7 nochump.util.zip is free software: you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11 
12 nochump.util.zip is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU Lesser General Public License for more details.
16 
17 You should have received a copy of the GNU Lesser General Public License
18 along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
19 */
20 package nochump.util.zip {
21 
22         import flash.utils.Dictionary;
23         import flash.utils.Endian;
24         import flash.utils.ByteArray;
25       
26         public class ZipOutput {
27               
28                 private var _entry:ZipEntry;
29                 private var _entries:Array = [];
30                 private var _names:Dictionary = new Dictionary();
31                 private var _def:Deflater = new Deflater();
32                 private var _crc:CRC32 = new CRC32();
33                 private var _buf:ByteArray = new ByteArray();
34                 private var _comment:String = "";
35               
36                 public function ZipOutput() {
37                         _buf.endian = Endian.LITTLE_ENDIAN;
38                 }
39               
40                 /**
41                  * Returns the number of entries in this zip file.
42                  */
43                 public function get size():uint {
44                         return _entries.length;
45                 }
46               
47                 /**
48                  * Returns the byte array of the finished zip.
49                  */
50                 public function get byteArray():ByteArray {
51                         _buf.position = 0;
52                         return _buf;
53                 }
54               
55                 /**
56                  *
57                  */
58                 public function set comment(value:String):void {
59                         _comment = value;
60                 }
61               
62                 public function putNextEntry(e:ZipEntry):void {
63                         if(_entry != null) closeEntry();
64                         // TODO:
65                         if(e.dostime == 0) e.time = new Date().time;
66                         if (e.method == -1) e.method = ZipConstants.DEFLATED; // use default method
67                         switch(e.method) {
68                                 case ZipConstants.DEFLATED:
69                                         if (e.size == -1 || e.compressedSize == -1 || e.crc == 0) {
70                                                 // store size, compressed size, and crc-32 in data descriptor
71                                                 // immediately following the compressed entry data
72                                                 e.flag = 8;
73                                         } else if (e.size != -1 && e.compressedSize != -1 && e.crc != 0) {
74                                                 // store size, compressed size, and crc-32 in LOC header
75                                                 e.flag = 0;
76                                         } else {
77                                                 throw new ZipError("DEFLATED entry missing size, compressed size, or crc-32");
78                                         }
79                                         e.version = 20;
80                                         break;
81                                 case ZipConstants.STORED:
82                                         // compressed size, uncompressed size, and crc-32 must all be
83                                         // set for entries using STORED compression method
84                                         if (e.size == -1) {
85                                                 e.size = e.compressedSize;
86                                         } else if (e.compressedSize == -1) {
87                                                 e.compressedSize = e.size;
88                                         } else if (e.size != e.compressedSize) {
89                                                 throw new ZipError("STORED entry where compressed != uncompressed size");
90                                         }
91                                         if (e.size == -1 || e.crc == 0) {
92                                                 throw new ZipError("STORED entry missing size, compressed size, or crc-32");
93                                         }
94                                         e.version = 10;
95                                         e.flag = 0;
96                                         break;
97                                 default:
98                                         throw new ZipError("unsupported compression method");
99                         }
100                         e.offset = _buf.position;
101                         if (_names[e.name] != null) {
102                                 throw new ZipError("duplicate entry: " + e.name);
103                         } else {
104                                 _names[e.name] = e;
105                         }
106                         writeLOC(e);
107                         _entries.push(e);
108                         _entry = e;
109                 }
110               
111                 public function write(b:ByteArray):void {
112                         if (_entry == null) {
113                                 throw new ZipError("no current ZIP entry");
114                         }
115                         //*
116                         switch (_entry.method) {
117                                 case ZipConstants.DEFLATED:
118                                         //super.write(b, off, len);
119                                         var cb:ByteArray = new ByteArray();
120                                         _def.setInput(b);
121                                         _def.deflate(cb);
122                                         _buf.writeBytes(cb);
123                                         // TODO: test if Deflater can deflate to the end of _buf (saves from using variable cb and an extra copy)
124                                         break;
125                                 case ZipConstants.STORED:
126                                         // TODO:
127                                         //if (written - locoff > _entry.size) {
128                                         //      throw new ZipError("attempt to write past end of STORED entry");
129                                         //}
130                                         //out.write(b, off, len);
131                                         _buf.writeBytes(b);
132                                         break;
133                                 default:
134                                         throw new Error("invalid compression method");
135                         }
136                         /**/
137                         _crc.update(b);
138                 }
139               
140                 // check if this method is still necessary since we're not dealing with streams
141                 // seems crc and whether a data descriptor i necessary is determined here
142                 public function closeEntry():void {
143                         var e:ZipEntry = _entry;
144                         if(e != null) {
145                                 switch (e.method) {
146                                         case ZipConstants.DEFLATED:
147                                                 if ((e.flag & 8) == 0) {
148                                                         // verify size, compressed size, and crc-32 settings
149                                                         if (e.size != _def.getBytesRead()) {
150                                                                 throw new ZipError("invalid entry size (expected " + e.size + " but got " + _def.getBytesRead() + " bytes)");
151                                                         }
152                                                         if (e.compressedSize != _def.getBytesWritten()) {
153                                                                 throw new ZipError("invalid entry compressed size (expected " + e.compressedSize + " but got " + _def.getBytesWritten() + " bytes)");
154                                                         }
155                                                         if (e.crc != _crc.getValue()) {
156                                                                 throw new ZipError( "invalid entry CRC-32 (expected 0x" + e.crc + " but got 0x" + _crc.getValue() + ")");
157                                                         }
158                                                 } else {
159                                                         e.size = _def.getBytesRead();
160                                                         e.compressedSize = _def.getBytesWritten();
161                                                         e.crc = _crc.getValue();
162                                                         writeEXT(e);
163                                                 }
164                                                 _def.reset();
165                                                 break;
166                                         case ZipConstants.STORED:
167                                                 // TODO:
168                                                 break;
169                                         default:
170                                                 throw new Error("invalid compression method");
171                                 }
172                                 _crc.reset();
173                                 _entry = null;
174                         }
175                 }
176               
177                 public function finish():void {
178                         if(_entry != null) closeEntry();
179                         if (_entries.length < 1) throw new ZipError("ZIP file must have at least one entry");
180                         var off:uint = _buf.position;
181                         // write central directory
182                         for(var i:uint = 0; i < _entries.length; i++) {
183                                 writeCEN(_entries[i]);
184                         }
185                         writeEND(off, _buf.position - off);
186                 }
187               
188                 private function writeLOC(e:ZipEntry):void {
189                         _buf.writeUnsignedInt(ZipConstants.LOCSIG);
190                         _buf.writeShort(e.version);
191                         _buf.writeShort(e.flag);
192                         _buf.writeShort(e.method);
193                         _buf.writeUnsignedInt(e.dostime); // dostime
194                         if ((e.flag & 8) == 8) {
195                                 // store size, uncompressed size, and crc-32 in data descriptor
196                                 // immediately following compressed entry data
197                                 _buf.writeUnsignedInt(0);
198                                 _buf.writeUnsignedInt(0);
199                                 _buf.writeUnsignedInt(0);
200                         } else {
201                                 _buf.writeUnsignedInt(e.crc); // crc-32
202                                 _buf.writeUnsignedInt(e.compressedSize); // compressed size
203                                 _buf.writeUnsignedInt(e.size); // uncompressed size
204                         }
205                         _buf.writeShort(e.name.length);
206                         _buf.writeShort(e.extra != null ? e.extra.length : 0);
207                         _buf.writeUTFBytes(e.name);
208                         if (e.extra != null) {
209                                 _buf.writeBytes(e.extra);
210                         }
211                 }
212               
213                 /*
214                  * Writes extra data descriptor (EXT) for specified entry.
215                  */
216                 private function writeEXT(e:ZipEntry):void {
217                         _buf.writeUnsignedInt(ZipConstants.EXTSIG); // EXT header signature
218                         _buf.writeUnsignedInt(e.crc); // crc-32
219                         _buf.writeUnsignedInt(e.compressedSize); // compressed size
220                         _buf.writeUnsignedInt(e.size); // uncompressed size
221                 }
222               
223                 /*
224                  * Write central directory (CEN) header for specified entry.
225                  * REMIND: add support for file attributes
226                  */
227                 private function writeCEN(e:ZipEntry):void {
228                         _buf.writeUnsignedInt(ZipConstants.CENSIG); // CEN header signature
229                         _buf.writeShort(e.version); // version made by
230                         _buf.writeShort(e.version); // version needed to extract
231                         _buf.writeShort(e.flag); // general purpose bit flag
232                         _buf.writeShort(e.method); // compression method
233                         _buf.writeUnsignedInt(e.dostime); // last modification time
234                         _buf.writeUnsignedInt(e.crc); // crc-32
235                         _buf.writeUnsignedInt(e.compressedSize); // compressed size
236                         _buf.writeUnsignedInt(e.size); // uncompressed size
237                         _buf.writeShort(e.name.length);
238                         _buf.writeShort(e.extra != null ? e.extra.length : 0);
239                         _buf.writeShort(e.comment != null ? e.comment.length : 0);
240                         _buf.writeShort(0); // starting disk number
241                         _buf.writeShort(0); // internal file attributes (unused)
242                         _buf.writeUnsignedInt(0); // external file attributes (unused)
243                         _buf.writeUnsignedInt(e.offset); // relative offset of local header
244                         _buf.writeUTFBytes(e.name);
245                         if (e.extra != null) {
246                                 _buf.writeBytes(e.extra);
247                         }
248                         if (e.comment != null) {
249                                 _buf.writeUTFBytes(e.comment);
250                         }
251                 }
252               
253                 /*
254                  * Writes end of central directory (END) header.
255                  */
256                 private function writeEND(off:uint, len:uint):void {
257                         _buf.writeUnsignedInt(ZipConstants.ENDSIG); // END record signature
258                         _buf.writeShort(0); // number of this disk
259                         _buf.writeShort(0); // central directory start disk
260                         _buf.writeShort(_entries.length); // number of directory entries on disk
261                         _buf.writeShort(_entries.length); // total number of directory entries
262                         _buf.writeUnsignedInt(len); // length of central directory
263                         _buf.writeUnsignedInt(off); // offset of central directory
264                         _buf.writeUTF(_comment); // zip file comment
265                 }
266               
267         }
268       
269 }

分享到:
评论

相关推荐

    用java.util.zip包现数据压缩与解压

    Java 的 `java.util.zip` 包提供了丰富的 API 来支持数据的压缩和解压缩工作。该包中包含了如 `ZipEntry`、`ZipFile`、`ZipInputStream` 和 `ZipOutputStream` 等类,它们可以用来处理 ZIP 格式的文件。此外,还包含...

    java.util.zip 解压缩文件,ZIP格式压缩文件.rar

    接下来,我们讨论如何使用 `java.util.zip` 包来压缩文件或目录为ZIP格式。这里,我们需要使用 `ZipOutputStream` 类,它是 `OutputStream` 的子类,用于写入ZIP格式的数据。以下是一个基本的压缩示例: ```java ...

    nochump-util-zip-optimized:ASC2 www.nochump.comblogarchives15 优化版

    《nochump-util-zip-optimized: 一个针对ASC2优化的压缩工具解析》 在IT行业中,优化一直是提升效率的关键所在。"nochump-util-zip-optimized" 是一个专为ASC2(ActionScript 2)设计的压缩工具,旨在提供更高效、...

    keyevent.util.zip

    "keyevent.util.zip"这个文件提供了一种JavaScript的解决方案,用于在Web应用程序中识别和处理来自不同平台(如联通IPTV和广电DVB)的遥控器输入。下面将详细介绍这个知识点及其相关技术。 1. **JavaScript事件处理...

    zipper.zip_java zipper_java.util包_zip_遗传算法

    在本文中,我们将深入探讨`java.util.zip`包中的关键组件以及如何使用它们创建一个类似`Zipper`的类。 首先,`java.util.zip`包中最核心的类有`ZipOutputStream`和`ZipInputStream`。`ZipOutputStream`是`...

    根据java.util.zip源码修改zip支持中文

    5. **Inflater/Deflater**: 这两个类是用于压缩和解压缩数据的,它们与编码问题无关,但在处理ZIP文件时也会用到。 6. **自定义实现**: 如果源码修改不是首选方案,也可以选择自定义一个类库,如Apache Commons ...

    java+apache完成zip压缩源码(包括修改后的java.util.zip下的源码)

    `java.util.zip`包提供了基础的压缩功能,但默认情况下,它可能无法正确处理包含中文文件名的情况。为了解决这个问题,开发者有时需要对原始源码进行修改,以确保中文文件名在压缩和解压缩过程中能被正确编码和解析...

    Exception in thread “main“ java.util.InputMismatchException.pdf

    在Java编程语言中,`java.util.InputMismatchException`是一个常见的运行时异常,它通常发生在尝试从数据源(如控制台、文件或数据库)读取数据时,遇到的数据类型与预期的不匹配。在这个特定的场景中,问题出在主线...

    tomcat启动报错:java.util.zip.ZipException的解决方法

    在使用Apache Tomcat服务器时,有时会遇到启动异常的情况,其中一种常见的错误是`java.util.zip.ZipException`。这个异常通常表明在处理ZIP或JAR文件时遇到了问题,可能是因为文件损坏、格式不正确或者无法打开。在...

    ExtJs4.0 使用心得@1 Ext.util.Format.Number()

    `Ext.util.Format`是ExtJS中一个非常实用的工具类,包含了一系列用于字符串、日期和数值等类型的数据格式化的静态方法。`Number()`方法是其中之一,专门用于处理和格式化数字。在实际开发中,我们经常需要将数字以...

    android.util.Base64类

    android.util.Base64类

    org.apache.commons.net.util.jar

    org.apache.commons.net.util.jar

    org.jasig.cas.client.util.CommonUtils

    予org.jasig.cas.client.util.CommonUtils 加入 public static void disableSSLVerification(){ try { // Create a trust manager that does not validate certificate chains TrustManager[] ...

    com.ibm.rsm.interaction.util.zip

    标题“com.ibm.rsm.interaction.util.zip”暗示我们正在处理一个与IBM Rational Software Manager (RSM) 交互相关的工具包,该工具包可能包含了用于处理或支持与用户交互的实用程序。RSM是一款IBM提供的软件生命周期...

    YAHOO.util.Dom.rar_YAHOO.util_YAHOO.util.Dom.chm_yahoo.util同步

    本文将深入探讨YAHOO.util.Dom的特性和使用方法。 一、YAHOO.util.Dom的基本概念 YAHOO.util.Dom,简称为Y Dom,是YUI中的一个模块,专门用于处理HTML文档对象模型(DOM)。它封装了大量的DOM操作方法,如查找元素...

    利用java.util.zip 包中提供的类来实现压缩和解压zip 格式文件的功能.rar

    在Java编程语言中,`java.util....通过以上代码,你可以实现使用`java.util.zip`包来压缩和解压缩ZIP文件的基本功能。需要注意的是,实际应用中可能需要处理更多细节,比如错误处理、文件权限检查、递归处理子目录等。

    jogl.util.gldesktop.jar.zip_it

    《Jogl.util.gldesktop.jar.zip:开启AR开发之旅》 在IT领域,尤其是在游戏开发和增强现实(AR)技术的应用中,Java库扮演着至关重要的角色。标题为"jogl.util.gldesktop.jar.zip"的压缩包,就是这样一个专门为AR...

    net.mindview.util包

    5. **使用JAR文件**:要在项目中使用`net.mindview.util.jar`,你需要确保它在项目的类路径(ClassPath)中。在IDE如Eclipse或IntelliJ IDEA中,可以通过设置项目配置来添加外部JAR。在命令行环境中,可以在运行Java...

Global site tag (gtag.js) - Google Analytics