- 2023-09-03 18:26:58
- 9802 热度
- 0 评论
都是JDK中原带的工具类和方法,压缩是Deflater类,解压是Inflater类!
该文章仅仅展示这两个类的实际使用,不用拍砖!
我们找一个压缩后能明显看出压缩效果的文件,比如DOC类文件,然后使用360压缩将其压缩,看压缩后大小
然后使用我们的程序进行压缩处理,看处理后的文件大小
最后进行解压,然后运行文件看压缩是否对文件产生了损坏
压缩:
package com.xidian; import java.io.ByteArrayOutputStream; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStream; import java.util.zip.Deflater; /** * 压缩类 * * @说明 缓冲区越大,速度越快 * @author cuisuqiang * @version 1.0 * @since */ public class ZipDirectory { public static void main(String[] args) throws Exception { en(); } public static void en() throws Exception { // 输入流 InputStream is = new FileInputStream("C:\\详细设计.doc"); // 字节输出流 ByteArrayOutputStream baos = new ByteArrayOutputStream(); // 缓冲区 缓冲区越大,速度越快 byte[] bu = new byte[1024 * 100]; int count = 0; // 将流写到字节输出流中 while ((count = is.read(bu)) > 0) { baos.write(bu, 0, count); } // 将字节输出流转为字节数组 byte[] text = baos.toByteArray(); // 如果要使用同一个流对象,一定要重设清空原有数据 baos.reset(); // 压缩器 Deflater compresser = new Deflater(); // 重置 deflater 以处理新的输入数据集 compresser.reset(); // 为压缩设置输入数据 compresser.setInput(text); // 调用时,指示压缩应当以输入缓冲区的当前内容结尾 compresser.finish(); try { byte[] buf = new byte[1024 * 100]; // 如果已到达压缩数据输出流的结尾,则返回 true while (!compresser.finished()) { int i = compresser.deflate(buf); baos.write(buf, 0, i); } } catch (Exception e) { e.printStackTrace(); } // 关闭解压缩器并放弃所有未处理的输入 compresser.end(); // 输出流 这里大家应该知道,输出任意名称,带不带后缀都是可以的,因为在Java中只有文件和文件夹之分 FileOutputStream fos = new FileOutputStream("C:\\详细设计"); // 将字节输出流写入到输出流中 baos.writeTo(fos); fos.close(); baos.close(); is.close(); System.out.println("压缩完毕"); } }
解压:
package com.xidian; import java.io.ByteArrayOutputStream; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStream; import java.util.zip.Inflater; /** * 解压缩类 * * @说明 缓冲区越大,速度越快 * @author cuisuqiang * @version 1.0 * @since */ public class Decompresser { public static void main(String[] args) throws Exception { de(); } public static void de() throws Exception { // 输入流 InputStream is = new FileInputStream("C:\\详细设计"); // 字节输出流 ByteArrayOutputStream baos = new ByteArrayOutputStream(); // 缓冲区 缓冲区越大,速度越快 byte[] bu = new byte[1024 * 100]; int count = 0; // 将流写到字节输出流中 while ((count = is.read(bu)) > 0) { baos.write(bu, 0, count); } // 将字节输出流转为字节数组 byte[] text = baos.toByteArray(); // 如果要使用同一个流对象,一定要重设清空原有数据 baos.reset(); // 解压器 Inflater decompresser = new Inflater(); // 重置 inflater 以处理新的输入数据集 decompresser.reset(); // 为解压缩设置输入数据 decompresser.setInput(text); // 用于接受压缩后的数据 try { // 缓冲 byte[] buf = new byte[1024 * 100]; // 如果已到达压缩数据流的结尾,则返回 true while (!decompresser.finished()) { int i = decompresser.inflate(buf); baos.write(buf, 0, i); } } catch (Exception e) { e.printStackTrace(); } // 关闭解压缩器并放弃所有未处理的输入 decompresser.end(); // 输出流 FileOutputStream fos = new FileOutputStream("C:\\详细设计.doc"); // 将字节输出流写入到输出流中 baos.writeTo(fos); fos.close(); baos.close(); is.close(); System.out.println("解压完毕"); } }
仅供参考。
0 评论
留下评论
热门标签
- Spring(403)
- Boot(208)
- Spring Boot(187)
- Spring Cloud(82)
- Java(82)
- Cloud(82)
- Security(60)
- Spring Security(54)
- Boot2(51)
- Spring Boot2(51)
- Redis(31)
- SQL(29)
- Mysql(25)
- Dalston(24)
- IDE(24)
- mongoDB(22)
- MVC(22)
- JDBC(22)
- IDEA(22)
- Web(21)
- CLI(20)
- Alibaba(19)
- SpringMVC(19)
- Docker(17)
- SpringBoot(17)
- Git(16)
- Eclipse(16)
- Vue(16)
- JPA(15)
- Apache(15)
- ORA(15)
- Tomcat(14)
- Linux(14)
- HTTP(14)
- Mybatis(14)
- Oracle(14)
- jdk(14)
- OAuth(13)
- Nacos(13)
- Pro(13)
- XML(13)
- JdbcTemplate(13)
- JSON(12)
- OAuth2(12)
- Data(12)
- int(11)
- Myeclipse(11)
- stream(11)
- not(10)
- Bug(10)
- Hystrix(9)
- ast(9)
- maven(9)
- Map(9)
- Swagger(8)
- APP(8)
- Bit(8)
- API(8)
- session(8)
- Window(8)
- windows(7)
- too(7)
- HTML(7)
- Github(7)
- JavaMail(7)
- Cache(7)
- File(7)
- mail(7)
- IntelliJ(7)
- nginx(6)
- Server(6)
- ueditor(6)
- jar(6)
- UDP(6)
- ehcache(6)
- RabbitMQ(6)
- star(6)
- and(6)
- Excel(6)
- Log4J(6)
- pushlet(6)
- apt(6)
- read(6)
- Freemarker(6)
- WebFlux(6)
- JSP(6)
- Bean(6)
- error(6)
- are(5)
- SVN(5)
- for(5)
- DOM(5)
- Sentinel(5)
- the(5)
- JWT(5)
- rdquo(5)
- PHP(5)
- Struts(5)
- string(5)
- Syntaxhighlighter(5)