欢迎来到天天文库
浏览记录
ID:20189183
大小:142.50 KB
页数:37页
时间:2018-10-11
《输入输出字符流_1ppt课件》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、处理压缩文件压缩流类java.util.zip包中提供了一些类,使我们可以以压缩格式对流进行读写它们都继承自字节流类OutputStream和InputStream其中GZIPOutputStream和ZipOutputStream可分别把数据压缩成GZIP格式和Zip格式GZIPInputStream和ZipInputStream可以分别把压缩成GZIP格式或Zip的数据解压缩恢复原状GZIPOutputStream父类是DeflaterOutputStream可以把数据压缩成GZIP格式GZIPInputStream父类是InflaterInputStream可
2、以把压缩成GZIP格式的数据解压缩——简单的GZIP压缩格式将文本文件“Hello.txt”压缩为文件“test.gz”,再解压该文件,显示其中内容,并另存为“newHello.txt”importjava.io.*;importjava.util.zip.*;publicclassTest1{publicstaticvoidmain(String[]args)throwsIOException{FileInputStreamin=newFileInputStream("c:/Hello.txt");GZIPOutputStreamout=newGZIPOutput
3、Stream(newFileOutputStream("c:/test.gz"));System.out.println("Writingcompressingfilefromc:/Hello.txttoc:/test.gz");intc;while((c=in.read())!=-1)out.write(c);//写压缩文件in.close();out.close();System.out.println("Readingfileformc:/test.gztomonitor");BufferedReaderin2=newBufferedReader(newInp
4、utStreamReader(newGZIPInputStream(newFileInputStream("c:/test.gz"))));Strings;while((s=in2.readLine())!=null)System.out.println(s);in2.close();System.out.println("Writingdecompressiontoc:/newHello.txt");GZIPInputStreamin3=newGZIPInputStream(newFileInputStream("c:/test.gz"));FileOutputS
5、treamout2=newFileOutputStream("c:/newHello.txt");while((c=in3.read())!=-1)out2.write(c);in3.close();out2.close();}}运行结果首先生成了压缩文件“test.gz”再读取显示其中的内容,和“Hello.txt”中的内容完全一样解压缩文件“newHello.txt”,和“Hello.txt”中的内容也完全相同说明read()方法读取一个字节,转化为[0,255]的之间的一个整数,返回一个int。如果读到了文件末尾,则返回-1。write(int)方法写一个字节
6、的低8位,忽略了高24位。Zip文件可能含有多个文件,所以有多个入口(Entry)每个入口用一个ZipEntity对象表示,该对象的getName()方法返回文件的最初名称ZipOutputStream父类是DeflaterOutputStream可以把数据压缩成ZIP格式ZipInputStream父类是InflaterInputStream可以把压缩成ZIP格式的数据解压缩——运用ZIP压缩多个文件从命令行输入若干个文件名,将所有文件压缩为“test.zip”,再从此压缩文件中解压并显示importjava.io.*;importjava.util.*;impo
7、rtjava.util.zip.*;publicclassTest1{publicstaticvoidmain(String[]args)throwsIOException{ZipOutputStreamout=newZipOutputStream(newBufferedOutputStream(newFileOutputStream("test.zip")));args=newString[2];args[0]="Hello.txt";args[1]="newHello.txt";for(inti=0;i
此文档下载收益归作者所有