Android GZip的使用-开发中网络请求的压缩实例详解
Android GZip:
gzip是GNUzip的缩写,它是一个GNU自由软件的文件压缩程序。
HTTP协议上的GZIP编码是一种用来改进WEB应用程序性能的技术。一般服务器中都安装有这个功能模块的,服务器端不需做改动。
当浏览器支持gzip格式的时候,服务器端会传输gzip格式的数据。
从Http技术细节上讲,就是httprequest头中有"Accept-Encoding","gzip",response中就有返回头Content-Encoding=gzip
我们现在从浏览器上访问玩啥网站都是gzip格式传输的。
但是我们现在Android客户端,没有用gzip格式访问。
同样的的道理,我们可以在android客户端request头中加入"Accept-Encoding","gzip",来让服务器传送gzip数据。
具体代码如下。
privateStringgetJsonStringFromGZIP(HttpResponseresponse){ StringjsonString=null; try{ InputStreamis=response.getEntity().getContent(); BufferedInputStreambis=newBufferedInputStream(is); bis.mark(2); //取前两个字节 byte[]header=newbyte[2]; intresult=bis.read(header); //reset输入流到开始位置 bis.reset(); //判断是否是GZIP格式 intheaderData=getShort(header); //Gzip流的前两个字节是0x1f8b if(result!=-1&&headerData==0x1f8b){ LogUtil.d("HttpTask","useGZIPInputStream"); is=newGZIPInputStream(bis); }else{ LogUtil.d("HttpTask","notuseGZIPInputStream"); is=bis; } InputStreamReaderreader=newInputStreamReader(is,"utf-8"); char[]data=newchar[100]; intreadSize; StringBuffersb=newStringBuffer(); while((readSize=reader.read(data))>0){ sb.append(data,0,readSize); } jsonString=sb.toString(); bis.close(); reader.close(); }catch(Exceptione){ LogUtil.e("HttpTask",e.toString(),e); } LogUtil.d("HttpTask","getJsonStringFromGZIPnetoutput:"+jsonString); returnjsonString; } privateintgetShort(byte[]data){ return(int)((data[0]<<8)|data[1]&0xFF); }
参考,注意实际使用中,我发现gzip流前两个字节是0x1e8b,不是0x1f8b.后来检查一下code,代码处理错误,加上第二个字节的时候需&0xFF0x1f8b
可参考标准
http://www.gzip.org/zlib/rfc-gzip.html#file-format
http://xmagicj.diandian.com/post/2011-08-08/3641381
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!