Gzip.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.strategy;
  2. import java.io.FileInputStream;
  3. import java.io.FileNotFoundException;
  4. import java.io.FileOutputStream;
  5. import java.util.zip.GZIPOutputStream;
  6. /**
  7.  * @author cbf4Life cbf4life@126.com
  8.  * I'm glad to share my knowledge with you all.
  9.  */
  10. public class Gzip implements Algorithm {
  11. //gzip的压缩算法
  12. public boolean compress(String source, String to) {
  13. System.out.println(source + " --> " +to + " GZIP压缩成功!");
  14. return true;
  15. }
  16. //gzip解压缩算法
  17. public boolean uncompress(String source,String to){
  18. System.out.println(source + " --> " +to + " GZIP解压缩成功!");
  19. return true;
  20. }
  21. }