在Android系统中使用gzip进行数据传递实例代码

前端技术 2023/09/02 Android
接下来,让我解说一下如何在Android系统中使用gzip进行数据传递
HTTP协议上的GZIP编码是一种用来改进WEB应用程序性能的技术。大流量的WEB站点常常使用GZIP压缩技术来减少文件大小,减少文件大小有两个明显的好处,一是可以减少存储空间,二是通过网络传输文件时,可以减少传输的时间。作者在写这篇博客时经过测试,4.4MB的文本数据经过Gzip传输到客户端之后变为392KB,压缩效率极高。

一.服务端
服务端有2种方式去压缩,一种可以自己压缩,但是更推荐第二种方式,用PrintWriter作为输出流,工具类代码如下
复制代码 代码如下:

/**
* 判断浏览器是否支持 gzip 压缩
* @param req
* @return boolean 值
*/
public static boolean isGzipSupport(HttpServletRequest req) {
String headEncoding = req.getHeader(\"accept-encoding\");
if (headEncoding == null || (headEncoding.indexOf(\"gzip\") == -1)) { // 客户端 不支持 gzip
return false;
} else { // 支持 gzip 压缩
return true;
}
}
/**
* 创建 以 gzip 格式 输出的 PrintWriter 对象,如果浏览器不支持 gzip 格式,则创建普通的 PrintWriter 对象,
* @param req
* @param resp
* @return
* @throws IOException
*/
public static PrintWriter createGzipPw(HttpServletRequest req, HttpServletResponse resp) throws IOException {
PrintWriter pw = null;
if (isGzipSupport(req)) { // 支持 gzip 压缩
pw = new PrintWriter(new GZIPOutputStream(resp.getOutputStream()));
// 在 header 中设置返回类型为 gzip
resp.setHeader(\"content-encoding\", \"gzip\");
} else { // // 客户端 不支持 gzip
pw = resp.getWriter();
}
return pw;
}

servlet代码如下:
复制代码 代码如下:

public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setCharacterEncoding(\"utf-8\");
response.setHeader(\"Content-Encoding\", \"gzip\");
String ret = \"{\\\"ContentLayer\\\":{\\\"title\\\":\\\"内容层\\\"},\\\"PageLink\\\":{\\\"title\\\":\\\"页面跳转\\\"},\\\"WebBrowser\\\":{\\\"title\\\":\\\"浏览器\\\"},\"
+ \"\\\"InlinePage\\\":{\\\"title\\\":\\\"内嵌页面\\\"},\\\"VideoComp\\\":{\\\"title\\\":\\\"视频\\\"},\"
+ \"\\\"PopButton\\\":{\\\"title\\\":\\\"内容开关\\\"},\\\"ZoomingPic\\\":{\\\"title\\\":\\\"缩放大图\\\"},\"
+ \"\\\"Rotate360\\\":{\\\"title\\\":\\\"360度旋转\\\"}}\";
PrintWriter pw = new PrintWriter(new GZIPOutputStream(response.getOutputStream()));
pw.write(ret);
pw.close();
}
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
this.doPost(request, response);
}

在代理软件中跟踪到的数据如下:
复制代码 代码如下:

‹«VrÎÏ+IÍ+ñI¬L-R²ªV*É,ÉIU²R:rëÄÝM•ju”ÓS}2ó²‘e/m>üì̏ë«@òá©INEùåŨúŸ¬?pàØw¼g^Nf^*ÈTóo™R–™\'šïœŸ[

本文地址:https://www.stayed.cn/item/5225

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。