本篇文章给大家分享的是有关怎么在java中利用压缩流实现压缩与解压,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
Java是一门面向对象编程语言,可以编写桌面应用程序、Web应用程序、分布式系统和嵌入式系统应用程序。
1.概念
压缩流可以将输入的数据变为压缩格式后进行输出,或者读取压缩格式的数据后,解压为正常数据。
2.压缩步骤
(1)生成一个压缩类对象,这个对象来自于一个".zip"的文件,通过它产生一ZipOutputStream对象;
(2)生成压缩对象入口,因为需要被压缩的文件不止一个。需要用ZipEntry方法生成压缩入口文件后才能放进压缩文件;
(3)用putNextEntry将压缩入口放入压缩文件;
(4)将文件内容写入了out.write(),将压缩入口和文件流关闭。
3.目录压缩
import java.io.*;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
public class ZipStreamExam2 {
public static void main(String[] args) {
try {
File file = new File("d:\\zipmultidir");
ZipOutputStream zos = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream("d:\\zipmultidir.zip")));
zipDir(file, zos, file);
zos.flush();
zos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
//压缩一个目录至zip文件
private static void zipDir(File dir, ZipOutputStream zos, File rootDir) throws IOException {
if (!dir.isDirectory())
return;
File[] files = dir.listFiles();
for (int i = 0; i < files.length; i++) {
if (files[i].isFile()) {
System.out.println(files[i].getAbsolutePath());
String now = files[i].getAbsolutePath();
String root = rootDir.getAbsolutePath();
String name = now.substring(root.length() + 1);
System.out.println(name);
FileInputStream fis = new FileInputStream(files[i]);
byte buf[] = new byte[1024];
int len = 0;
ZipEntry ze = new ZipEntry(name);
zos.putNextEntry(ze);
while ((len = fis.read(buf)) != -1) {
zos.write(buf, 0, len);
}
fis.close();
} else if (files[i].isDirectory()) {
zipDir(files[i], zos, rootDir);
}
}
}
}
4.解压到目录
import java.io.*;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
/**
* Created by test2 on 2016/8/19.
*/
public class ZipStreamExam3 {
public static void main(String[] args) {
try {
File srcFile = new File("d:\\zipmultidir.zip");
System.out.println(srcFile.getCanonicalPath());
String curDir = srcFile.getParent()+File.separator+"destDir"+File.separator;
ZipInputStream zipInputStream = new ZipInputStream(new BufferedInputStream(new FileInputStream(srcFile)));
ZipEntry ze = null;
byte[] buf = new byte[1024];
int len = 0;
while ((ze = zipInputStream.getNextEntry()) != null) {
String filePath = curDir + ze.getName();
File destFile = new File(filePath);
File destDir = new File(destFile.getParent());
if(!destDir.exists()){
destDir.mkdirs();
}
BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(new FileOutputStream(destFile));
while ((len = zipInputStream.read(buf)) != -1) {
bufferedOutputStream.write(buf, 0, len);
}
bufferedOutputStream.flush();
bufferedOutputStream.close();
}
zipInputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
以上就是怎么在java中利用压缩流实现压缩与解压,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注亿速云行业资讯频道。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。
原文链接:https://www.py.cn/java/jichu/22596.html