Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android中如何使用gzip傳遞數據

Android中如何使用gzip傳遞數據

編輯:Android開發教程

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
			// 查看本欄目更多精彩內容:http://www.bianceng.cn/OS/extra/
                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+IL-RV*,IUR:rMjuS}2óe/m>üì@òáINEù¨ú?pàwg^Nf^*TóoR[àc[8n7@  
òós3ó2Uèg÷T$¤ +r·Zh¤

實際數據如下:

{"ContentLayer":{"title":"內容層"},"PageLink":{"title":"頁面跳轉"},"WebBrowser":{"title":"浏覽器"},"InlinePage":{"title":"內嵌頁面"},"VideoComp":{"title":"視頻"},"PopButton":{"title":"內容開關"},"ZoomingPic":{"title":"縮放大圖"},"Rotate360":{"title":"360度旋轉"}}  

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved