日期:2011-03-22 16:17:00 来源:本站整理
java压缩文件[Java编程]
本文“java压缩文件[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
java的GZIP接口非常简单,所以假如只有单个数据流需求压缩(而不是一系列差别的数据),那么它便大概是最得当挑选.下面是对单个文件举行压缩的例子:
压缩类的用法非常直观——只需将输出流封装到一个GZIPOutputStream大概ZipOutputStream内,并将输入流封装到GZIPInputStream大概ZipInputStream内便可.剩余的全部操作就是尺度的IO读写.但是,这是一个很典型的例子,我们不得不混合利用新旧IO流:数据的输入利用Reader类,而GZIPOutputStream的构建器只能接纳一个OutputStream对象,不能接纳Writer对象.//: GZIPcompress.java // Uses Java 1.1 GZIP compression to compress // a file whose name is passed on the command // line. import java.io.*; import java.util.zip.*; public class GZIPcompress { public static void main(String[] args) { try { BufferedReader in = new BufferedReader( new FileReader(args[0])); BufferedOutputStream out = new BufferedOutputStream( new GZIPOutputStream( new FileOutputStream("test.gz"))); System.out.println("Writing file"); int c; while((c = in.read()) != -1) out.write(c); in.close(); out.close(); System.out.println("Reading file"); BufferedReader in2 = new BufferedReader( new InputStreamReader( new GZIPInputStream( new FileInputStream("test.gz")))); String s; while((s = in2.readLine()) != null) System.out.println(s); } catch(Exception e) { e.printStackTrace(); } } } ///:~
以上是“java压缩文件[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
- ·上一篇文章:java用Zip举行多文件保存
- ·下一篇文章:java的压缩类
- ·中查找“java压缩文件”更多相关内容
- ·中查找“java压缩文件”更多相关内容
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论