Java压缩/解压缩二进制文件--http中content-encoding:deflate也可以使用

在Java中提供DeflaterInflater工具类来压缩/解压缩数据。 这两个工具类采用zlib算法,下面给出一个封装好的工具。


Java代码   收藏代码
  1. /** 
  2.  * util for compress/decompress data 
  3.  *  
  4.  * @author lichengwu 
  5.  * @version 1.0 
  6.  * @created 2013-02-07 10:14 AM 
  7.  */  
  8. public final class CompressionUtil {  
  9.   
  10.     private static final int BUFFER_SIZE = 4 * 1024;  
  11.   
  12.     /** 
  13.      * compress data by {@linkplain Level} 
  14.      *  
  15.      * @author lichengwu 
  16.      * @created 2013-02-07 
  17.      *  
  18.      * @param data 
  19.      * @param level 
  20.      *            see {@link Level} 
  21.      * @return 
  22.      * @throws IOException 
  23.      */  
  24.     public static byte[] compress(byte[] data, Level level) throws IOException {  
  25.   
  26.         Assert.notNull(data);  
  27.         Assert.notNull(level);  
  28.   
  29.         Deflater deflater = new Deflater();  
  30.         // set compression level  
  31.         deflater.setLevel(level.getLevel());  
  32.         deflater.setInput(data);  
  33.   
  34.         ByteArrayOutputStream outputStream = new ByteArrayOutputStream(data.length);  
  35.   
  36.         deflater.finish();  
  37.         byte[] buffer = new byte[BUFFER_SIZE];  
  38.         while (!deflater.finished()) {  
  39.             int count = deflater.deflate(buffer); // returns the generated  
  40.                                                   // code... index  
  41.             outputStream.write(buffer, 0, count);  
  42.         }  
  43.         byte[] output = outputStream.toByteArray();  
  44.         outputStream.close();  
  45.         return output;  
  46.     }  
  47.   
  48.     /** 
  49.      * decompress data 
  50.      *  
  51.      * @author lichengwu 
  52.      * @created 2013-02-07 
  53.      *  
  54.      * @param data 
  55.      * @return 
  56.      * @throws IOException 
  57.      * @throws DataFormatException 
  58.      */  
  59.     public static byte[] decompress(byte[] data) throws IOException, DataFormatException {  
  60.   
  61.         Assert.notNull(data);  
  62.   
  63.         Inflater inflater = new Inflater();  
  64.         inflater.setInput(data);  
  65.   
  66.         ByteArrayOutputStream outputStream = new ByteArrayOutputStream(data.length);  
  67.         byte[] buffer = new byte[BUFFER_SIZE];  
  68.         while (!inflater.finished()) {  
  69.             int count = inflater.inflate(buffer);  
  70.             outputStream.write(buffer, 0, count);  
  71.         }  
  72.         byte[] output = outputStream.toByteArray();  
  73.         outputStream.close();  
  74.         return output;  
  75.     }  
  76.   
  77.     /** 
  78.      * Compression level 
  79.      */  
  80.     public static enum Level {  
  81.   
  82.         /** 
  83.          * Compression level for no compression. 
  84.          */  
  85.         NO_COMPRESSION(0),  
  86.   
  87.         /** 
  88.          * Compression level for fastest compression. 
  89.          */  
  90.         BEST_SPEED(1),  
  91.   
  92.         /** 
  93.          * Compression level for best compression. 
  94.          */  
  95.         BEST_COMPRESSION(9),  
  96.   
  97.         /** 
  98.          * Default compression level. 
  99.          */  
  100.         DEFAULT_COMPRESSION(-1);  
  101.   
  102.         private int level;  
  103.   
  104.         Level(  
  105.   
  106.         int level) {  
  107.             this.level = level;  
  108.         }  
  109.         public int getLevel() {  
  110.             return level;  
  111.         }  
  112.     }    
  113. }  

 下面是一个测试:

Java代码   收藏代码
  1. @Test  
  2. public void testCompress() throws Exception {  
  3.   
  4.     BufferedInputStream in = new BufferedInputStream(new FileInputStream(  
  5.             "/Users/lichengwu/tmp/out_put.txt.bak"));  
  6.     ByteArrayOutputStream out = new ByteArrayOutputStream(1024);  
  7.   
  8.     byte[] temp = new byte[1024];  
  9.     int size = 0;  
  10.     while ((size = in.read(temp)) != -1) {  
  11.         out.write(temp, 0, size);  
  12.     }  
  13.     in.close();  
  14.     byte[] data = out.toByteArray();  
  15.     byte[] output = CompressionUtil.compress(data, CompressionUtil.Level.BEST_COMPRESSION);  
  16.     System.out.println("before : " + (data.length / 1024) + "k");  
  17.     System.out.println("after : " + (output.length / 1024) + "k");  
  18.   
  19.     FileOutputStream fos = new FileOutputStream("/Users/lichengwu/tmp/out_put.txt.bak.compress");  
  20.     fos.write(output);  
  21.     out.close();  
  22.     fos.close();  
  23. }  
  24.   
  25. @Test  
  26. public void testDecompress() throws Exception {  
  27.   
  28.     BufferedInputStream in = new BufferedInputStream(new FileInputStream(  
  29.             "/Users/lichengwu/tmp/out_put.txt.bak.compress"));  
  30.     ByteArrayOutputStream out = new ByteArrayOutputStream(1024);  
  31.     byte[] temp = new byte[1024];  
  32.     int size = 0;  
  33.     while ((size = in.read(temp)) != -1) {  
  34.         out.write(temp, 0, size);  
  35.     }  
  36.     in.close();  
  37.     byte[] data = out.toByteArray();  
  38.     byte[] output = CompressionUtil.decompress(data);  
  39.     System.out.println("before : " + (data.length / 1024) + "k");  
  40.     System.out.println("after : " + (output.length / 1024) + "k");  
  41.   
  42.     FileOutputStream fos = new FileOutputStream("/Users/lichengwu/tmp/out_put.txt.bak.decompress");  
  43.     fos.write(output);  
  44.     out.close();  
  45.     fos.close();  
  46. }  

 关于OutOfMemoryError,请参考:http://www.devguli.com/blog/eng/java-deflater-and-outofmemoryerror/

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值