我是靠谱客的博主 满意朋友,最近开发中收集的这篇文章主要介绍Zip压缩继续分析,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

前面的一篇文章说明了压缩以及解压缩,但是对于字节流的分析表示,上次的压缩满足不了(或者说满足起来显得复杂)现在开发要求,及我们可以直接从压缩文件中读取到文件大小以及压缩文件大小,方便直接解析使用。

 

上次采用的基本上是存储模式压缩,不记录文件的大小以及压缩文件大小。改变后采用真正的压缩模式压缩,采用zip给定的压缩算法实现。

 

具体的压缩代码。

	final static public void zip(String srcfile, String destfile) {
		try {
			BufferedInputStream origin = null;
			ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(
					new FileOutputStream(destfile)));

			File f = new File(srcfile);
			Vector v = new Vector();
			v = parse(f.listFiles(), v);
			File file = null;
			String path = null;
			ZipEntry entry = null;
			byte[] data = null;
			CRC32 crc = null;
			for (int i = 0; i < v.size(); i++) {
				file = (File) v.elementAt(i);
				path = path(srcfile, file.getAbsolutePath());
				if (file.isFile()) {
					origin = new BufferedInputStream(new FileInputStream(file),
							BUFFER);
					entry = new ZipEntry(path);
					data = new byte[origin.available()];
					origin.read(data);
					byte[] deflater = new byte[1000];
					Deflater de = new Deflater(Deflater.DEFAULT_COMPRESSION,
							true);
					de.setInput(data);
					de.finish();
					de.deflate(deflater, 0, deflater.length);
					entry.setMethod(ZipEntry.DEFLATED);
					entry.setSize(de.getBytesRead());
					entry.setCompressedSize(de.getBytesWritten());
					crc = new CRC32();
					crc.update(data);
					entry.setCrc(crc.getValue());
					out.setMethod(ZipOutputStream.DEFLATED);
					out.setLevel(Deflater.DEFAULT_COMPRESSION);
					out.putNextEntry(entry);
					out.write(data, 0, data.length);
				} else {
					entry = new ZipEntry(path + "/");
					out.putNextEntry(entry);
				}
				out.flush();
				out.closeEntry();
			}
			out.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

 

其余部分代码参见http://gao-20022002.iteye.com/blog/271319 ,这篇文章只是改进了压缩实现。

 

关于zip文件的压缩算法,具体参见http://gao-20022002.iteye.com/blog/273714 。

最后

以上就是满意朋友为你收集整理的Zip压缩继续分析的全部内容,希望文章能够帮你解决Zip压缩继续分析所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部