- 浏览: 601675 次
- 性别:
- 来自: 广州
-
文章分类
最新评论
-
wzh051527:
我是大四实习生一个,自我感觉技术能力在第三年。。唯一不明白,为 ...
十年技术,不要再迷茫 -
room_bb:
.hrl文件怎么加入到编译规则里面?比如:pp.hrl文件-d ...
Erlang中用的makefile的一点解释 -
吉米家:
感觉帆软报表的flash打印就很不错哇,特别好用
JSP 实现报表打印 -
雪碧爱芬达:
苦逼程序员的辛酸反省与总结 -
mlyjxx:
...
十年技术,不要再迷茫
/*
2 nochump.util.zip.ZipOutput
3 Copyright (C) 2007 David Chang (dchang@nochump.com)
4
5 This file is part of nochump.util.zip.
6
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 }
发表评论
-
as3 Loader 加载资源后内存泄露无法释放的问题。
2014-06-21 10:30 700as3 Loader 加载资源后内存泄露无法释放的问题。 ... -
as3判断flash player版本的函数
2014-06-10 20:35 859//判断当前版本是否高于9.0.115.0为例子. pr ... -
CSS 中文字体的英文名称 (simhei, simsun) 宋体 微软雅黑
2014-04-03 15:25 1065华文细黑:STHeiti Light [STXihei]华文 ... -
as3.0的垃圾回收机制
2013-09-07 14:02 1557还是同样的博客,还是同样的作者(Daniel Sidhio ... -
AIR程序多开
2013-09-07 13:55 1022AIR应用通常不能像QQ那样能进行多开操作。为了让一个用AI ... -
starling性能优化总结
2013-07-22 14:06 1491在项目开发的过程中总结了一下starling的性能优化方案: ... -
AS3 Socket从零开始
2013-07-22 12:54 1123大家如果想学AS3 Socket直接在百度里搜一下,会找到很 ... -
绕开AS3安全沙箱 跨域加载SWF
2013-07-11 12:53 930AS3的安全沙箱的确是 ... -
解决AS3在ie中初始化时stageWidth和stageHeight为0
2013-06-14 09:23 1046先看下面的一段脚本,这是比较经典的初始化脚本: pac ... -
动态获取swc中的类
2013-05-25 10:32 998想通过代码生成,来获取swc中的类,并且可以作为普通类正常使 ... -
AS3 中字符串的format功能实现
2013-05-25 10:19 856使用C#的朋友都知道,string.Format();还是挺 ... -
总结调用Flash的几种方法
2013-05-02 16:18 1691一、Adobe 提供的方法 <object wi ... -
Flash3D错误集锦
2013-05-02 14:03 967VerifyError: Error #1014: 无法找到 ... -
使用scale拉伸之后的坐标问题
2013-04-12 09:38 1316最近发现论坛多了很多 ... -
30个实用的网页设计工具
2013-03-20 09:58 856作为一位网页设计师或开发者,你一直需要搜寻获取强大的网页设计 ... -
如何成为强大的程序员?
2013-03-11 11:27 749Aaron Stannard是新创公 ... -
漫谈重构
2013-03-11 11:09 905因为工作内容的原因, ... -
AS3使用谷歌API生成二维码
2012-12-10 16:24 1382二维码在新闻杂志,网站,网络广告,电视广告等地方随处可见 ... -
OOP的聚合原则
2012-12-10 16:21 947什么是聚合? 聚合可以很好地表达对象是什么和做 ... -
压缩速率追踪
2012-11-02 14:16 1495Flash Player 11.3添加了一个压缩和解压B ...
相关推荐
Java 的 `java.util.zip` 包提供了丰富的 API 来支持数据的压缩和解压缩工作。该包中包含了如 `ZipEntry`、`ZipFile`、`ZipInputStream` 和 `ZipOutputStream` 等类,它们可以用来处理 ZIP 格式的文件。此外,还包含...
接下来,我们讨论如何使用 `java.util.zip` 包来压缩文件或目录为ZIP格式。这里,我们需要使用 `ZipOutputStream` 类,它是 `OutputStream` 的子类,用于写入ZIP格式的数据。以下是一个基本的压缩示例: ```java ...
《nochump-util-zip-optimized: 一个针对ASC2优化的压缩工具解析》 在IT行业中,优化一直是提升效率的关键所在。"nochump-util-zip-optimized" 是一个专为ASC2(ActionScript 2)设计的压缩工具,旨在提供更高效、...
"keyevent.util.zip"这个文件提供了一种JavaScript的解决方案,用于在Web应用程序中识别和处理来自不同平台(如联通IPTV和广电DVB)的遥控器输入。下面将详细介绍这个知识点及其相关技术。 1. **JavaScript事件处理...
在本文中,我们将深入探讨`java.util.zip`包中的关键组件以及如何使用它们创建一个类似`Zipper`的类。 首先,`java.util.zip`包中最核心的类有`ZipOutputStream`和`ZipInputStream`。`ZipOutputStream`是`...
5. **Inflater/Deflater**: 这两个类是用于压缩和解压缩数据的,它们与编码问题无关,但在处理ZIP文件时也会用到。 6. **自定义实现**: 如果源码修改不是首选方案,也可以选择自定义一个类库,如Apache Commons ...
`java.util.zip`包提供了基础的压缩功能,但默认情况下,它可能无法正确处理包含中文文件名的情况。为了解决这个问题,开发者有时需要对原始源码进行修改,以确保中文文件名在压缩和解压缩过程中能被正确编码和解析...
在Java编程语言中,`java.util.InputMismatchException`是一个常见的运行时异常,它通常发生在尝试从数据源(如控制台、文件或数据库)读取数据时,遇到的数据类型与预期的不匹配。在这个特定的场景中,问题出在主线...
在使用Apache Tomcat服务器时,有时会遇到启动异常的情况,其中一种常见的错误是`java.util.zip.ZipException`。这个异常通常表明在处理ZIP或JAR文件时遇到了问题,可能是因为文件损坏、格式不正确或者无法打开。在...
`Ext.util.Format`是ExtJS中一个非常实用的工具类,包含了一系列用于字符串、日期和数值等类型的数据格式化的静态方法。`Number()`方法是其中之一,专门用于处理和格式化数字。在实际开发中,我们经常需要将数字以...
android.util.Base64类
org.apache.commons.net.util.jar
予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”暗示我们正在处理一个与IBM Rational Software Manager (RSM) 交互相关的工具包,该工具包可能包含了用于处理或支持与用户交互的实用程序。RSM是一款IBM提供的软件生命周期...
本文将深入探讨YAHOO.util.Dom的特性和使用方法。 一、YAHOO.util.Dom的基本概念 YAHOO.util.Dom,简称为Y Dom,是YUI中的一个模块,专门用于处理HTML文档对象模型(DOM)。它封装了大量的DOM操作方法,如查找元素...
在Java编程语言中,`java.util....通过以上代码,你可以实现使用`java.util.zip`包来压缩和解压缩ZIP文件的基本功能。需要注意的是,实际应用中可能需要处理更多细节,比如错误处理、文件权限检查、递归处理子目录等。
《Jogl.util.gldesktop.jar.zip:开启AR开发之旅》 在IT领域,尤其是在游戏开发和增强现实(AR)技术的应用中,Java库扮演着至关重要的角色。标题为"jogl.util.gldesktop.jar.zip"的压缩包,就是这样一个专门为AR...
5. **使用JAR文件**:要在项目中使用`net.mindview.util.jar`,你需要确保它在项目的类路径(ClassPath)中。在IDE如Eclipse或IntelliJ IDEA中,可以通过设置项目配置来添加外部JAR。在命令行环境中,可以在运行Java...