Android中使用gzip传递数据

Linux大全评论2.7K views阅读模式

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–™’šïœŸ[€¬àÔåc[ÁÖç8•–”äç¡»nÿª7@
¢òós3óÒ2“‘Uœþºýè–Ïg÷€Tå—$–¤› +r·¸ðä‡Zh¤†ˆ

企鹅博客
  • 本文由 发表于 2019年7月12日 13:39:34
  • 转载请务必保留本文链接:https://www.qieseo.com/178220.html

发表评论