2021
02-21
02-21
Java GZIPOutputStream流压缩文件的操作
我就废话不多说了,大家还是直接看代码吧~不多说,直接上代码publicstaticvoidmain(String[]args)throwsException{//压缩文件Filesrc=newFile("e:/xx/aa.txt");FilezipFile=newFile("e:/xx/a.zip");FileOutputStreamfos=newFileOutputStream(zipFile);ZipOutputStreamzos=newZipOutputStream(fos);BufferedInputStreambis=newBufferedInputStream(newFileInputStream(src)...
继续阅读 >