是否为GZIPInputStream格式(gzip压缩格式)

判断是否为GZIPInputStream格式(gzip压缩格式)

转自 http://wingware.iteye.com/blog/1618561

Java代码   收藏代码
  1.               InputStream ips = null;  
  2. // 取前两个字节  
  3. byte[] header = new byte[2];  
  4. if (isGzip()) {  
  5.     try {  
  6.         BufferedInputStream bis = new BufferedInputStream(connection.getInputStream());  
  7.         bis.mark(2);  
  8.         int result = bis.read(header);  
  9.         // reset输入流到开始位置  
  10.         bis.reset();  
  11.         // 判断是否是GZIP格式  
  12.         int ss = (header[0] & 0xff) | ((header[1] & 0xff) << 8);  
  13.         if(result!=-1 && ss == GZIPInputStream.GZIP_MAGIC) {  
  14.             //System.out.println("为数据压缩格式...");  
  15.             ips= new GZIPInputStream(bis);  
  16.         } else {  
  17.             // 取前两个字节  
  18.             ips= bis;  
  19.         }  
  20.     } catch (java.io.IOException e) {  
  21.         e.printStackTrace();  
  22.         ips = connection.getInputStream();  
  23.     }  
  24. else {  
  25.     ips = connection.getInputStream();  
  26. }  


判断header中是否包含有gzip 
Java代码   收藏代码
  1. public boolean isGzip() {  
  2.         boolean gzip = false;  
  3.         for (String key : this.getHeaders().keySet()) {  
  4.             if (key.equalsIgnoreCase("Accept-Encoding") && this.getHeaders().get(key).contains("gzip")) {  
  5.                 gzip = true;  
  6.                 break;  
  7.             }  
  8.         }  
  9.         return gzip;  
  10.     }  

你可能感兴趣的:(压缩技术)