读书人

Android中使用gzip传送数据

发布时间: 2013-10-30 12:56:21 作者: rapoo

Android中使用gzip传递数据

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

一.服务端

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

[java] view plaincopy
  1. /**
  2. * 判断浏览器是否支持 gzip 压缩
  3. * @param req
  4. * @return boolean 值
  5. */
  6. public static boolean isGzipSupport(HttpServletRequest req) {
  7. String headEncoding = req.getHeader("accept-encoding");
  8. if (headEncoding == null || (headEncoding.indexOf("gzip") == -1)) { // 客户端 不支持 gzip
  9. return false;
  10. } else { // 支持 gzip 压缩
  11. return true;
  12. }
  13. }
  14. /**
  15. * 创建 以 gzip 格式 输出的 PrintWriter 对象,如果浏览器不支持 gzip 格式,则创建普通的 PrintWriter 对象,
  16. * @param req
  17. * @param resp
  18. * @return
  19. * @throws IOException
  20. */
  21. public static PrintWriter createGzipPw(HttpServletRequest req, HttpServletResponse resp) throws IOException {
  22. PrintWriter pw = null;
  23. if (isGzipSupport(req)) { // 支持 gzip 压缩
  24. pw = new PrintWriter(new GZIPOutputStream(resp.getOutputStream()));
  25. // 在 header 中设置返回类型为 gzip
  26. resp.setHeader("content-encoding", "gzip");
  27. } else { // // 客户端 不支持 gzip
  28. pw = resp.getWriter();
  29. }
  30. return pw;
  31. }

servlet代码如下:
[java] view plaincopy
  1. public void doPost(HttpServletRequest request, HttpServletResponse response)
  2. throws ServletException, IOException {
  3. response.setCharacterEncoding("utf-8");
  4. response.setHeader("Content-Encoding", "gzip");
  5. String ret = "{\"ContentLayer\":{\"title\":\"内容层\"},\"PageLink\":{\"title\":\"页面跳转\"},\"WebBrowser\":{\"title\":\"浏览器\"},"
  6. + "\"InlinePage\":{\"title\":\"内嵌页面\"},\"VideoComp\":{\"title\":\"视频\"},"
  7. + "\"PopButton\":{\"title\":\"内容开关\"},\"ZoomingPic\":{\"title\":\"缩放大图\"},"
  8. + "\"Rotate360\":{\"title\":\"360度旋转\"}}";
  9. PrintWriter pw = new PrintWriter(new GZIPOutputStream(response.getOutputStream()));
  10. pw.write(ret);
  11. pw.close();
  12. }
  13. public void doGet(HttpServletRequest request, HttpServletResponse response)
  14. throws ServletException, IOException {
  15. this.doPost(request, response);
  16. }
在代理软件中跟踪到的数据如下:
[html] view plaincopy
  1. ‹?Vr??+Ií+?I?L-R2aV*é,éIU2R:r??YM•ju”óS}2ó2‘e/m>üìì??@òá?INEù??¨úŸ??pà?w?g^Nf^*èTóo™R–™’š?œŸ[€?à??c[á??8•–”????n?a7@
  2. ¢òós3óò2“‘Uœtoyè–?g÷€T?—$–¤› +r?e?‡Zh¤†ˆ

实际数据如下:

[html] view plaincopy
  1. {"ContentLayer":{"title":"内容层"},"PageLink":{"title":"页面跳转"},"WebBrowser":{"title":"浏览器"},"InlinePage":{"title":"内嵌页面"},"VideoComp":{"title":"视频"},"PopButton":{"title":"内容开关"},"ZoomingPic":{"title":"缩放大图"},"Rotate360":{"title":"360度旋转"}}

二.Android客户端

得到HttpClient代码:

[html] view plaincopy
  1. private static DefaultHttpClient getHttpClient() {
  2. DefaultHttpClient httpClient = new DefaultHttpClient();
  3. // 设置 连接超时时间
  4. httpClient.getParams().setParameter(
  5. HttpConnectionParams.CONNECTION_TIMEOUT, TIMEOUT_CONNECTION);
  6. // 设置 读数据超时时间
  7. httpClient.getParams().setParameter(HttpConnectionParams.SO_TIMEOUT,
  8. TIMEOUT_SOCKET);
  9. // 设置 字符集
  10. httpClient.getParams().setParameter("http.protocol.content-charset",
  11. UTF_8);
  12. return httpClient;
  13. }

得到HttpPost:

[java] view plaincopy
  1. private static HttpPost getHttpPost(String url) {
  2. HttpPost httpPost = new HttpPost(url);
  3. // 设置 请求超时时间
  4. httpPost.getParams().setParameter(HttpConnectionParams.SO_TIMEOUT,
  5. TIMEOUT_SOCKET);
  6. httpPost.setHeader("Connection", "Keep-Alive");
  7. httpPost.addHeader("Accept-Encoding", "gzip");
  8. return httpPost;
  9. }

访问网络代码:

[java] view plaincopy
  1. public static InputStream http_post_return_byte(String url,
  2. Map<String, String> params) throws AppException {
  3. DefaultHttpClient httpclient = null;
  4. HttpPost post = null;
  5. HttpResponse response = null;
  6. StringBuilder sb = null;
  7. StringEntity stringEntity = null;
  8. try {
  9. httpclient = getHttpClient();
  10. post = getHttpPost(url);
  11. sb = new StringBuilder();
  12. if (params != null && !params.isEmpty()) {
  13. Logger.d("In http_post the url is get here");
  14. for (Entry<String, String> entry : params.entrySet()) {
  15. sb.append(entry.getKey())
  16. .append("=")
  17. .append(URLEncoder.encode(entry.getValue(),
  18. HTTP.UTF_8)).append("&");
  19. }
  20. sb.deleteCharAt(sb.lastIndexOf("&"));
  21. Logger.d("In http_post the url is " + url + " and params is "
  22. + sb.toString());
  23. stringEntity = new StringEntity(sb.toString());
  24. stringEntity
  25. .setContentType("application/x-www-form-urlencoded");
  26. post.setEntity(stringEntity);
  27. }
  28. response = httpclient.execute(post);
  29. int statusCode = response.getStatusLine().getStatusCode();
  30. Logger.d("statusCode is " + statusCode);
  31. if (statusCode != HttpStatus.SC_OK) {
  32. throw AppException.http(statusCode);
  33. }
  34. InputStream is = response.getEntity().getContent();
  35. Header contentEncoding = response
  36. .getFirstHeader("Content-Encoding");
  37. if (contentEncoding != null
  38. && contentEncoding.getValue().equalsIgnoreCase("gzip")) {
  39. is = new GZIPInputStream(new BufferedInputStream(is));
  40. }
  41. return is;
  42. } catch (ClientProtocolException e) {
  43. e.printStackTrace();
  44. throw AppException.http(e);
  45. } catch (IOException e) {
  46. e.printStackTrace();
  47. throw AppException.network(e);
  48. } finally {
  49. /*
  50. * if (!post.isAborted()) {
  51. *
  52. * post.abort(); } httpclient = null;
  53. */
  54. }
  55. }

读书人网 >Android

热点推荐