0
点赞
收藏
分享

微信扫一扫

Android中使用gzip传递数据

驚鴻飛雪 2022-08-23 阅读 63


作者在写这篇博客时经过测试,4.4MB的文本数据经过Gzip传输到客户端之后变为392KB,压缩效率极高。

一.服务端

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


[java] 
​​view plain​​​
​​​copy​​





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



servlet代码如下:


[java]
​​view plain​​​
​​​copy​​





1. public void doPost(HttpServletRequest request, HttpServletResponse response)
2. throws ServletException, IOException {
3. "utf-8");
4. "Content-Encoding", "gzip");
5. "{\"ContentLayer\":{\"title\":\"内容层\"},\"PageLink\":{\"title\":\"页面跳转\"},\"WebBrowser\":{\"title\":\"浏览器\"},"
6. "\"InlinePage\":{\"title\":\"内嵌页面\"},\"VideoComp\":{\"title\":\"视频\"},"
7. "\"PopButton\":{\"title\":\"内容开关\"},\"ZoomingPic\":{\"title\":\"缩放大图\"},"
8. "\"Rotate360\":{\"title\":\"360度旋转\"}}";
9.
10. new PrintWriter(new GZIPOutputStream(response.getOutputStream()));
11. pw.write(ret);
12. pw.close();
13. }
14.
15. public void doGet(HttpServletRequest request, HttpServletResponse response)
16. throws ServletException, IOException {
17. this.doPost(request, response);
18. }

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


[html]
​​view plain​​​
​​​copy​​





1. ‹«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@
2. ¢òós3óÒ2“‘Uœþºýè–Ïg÷€Tå—$–¤› +r·¸ðä‡Zh¤†ˆ


实际数据如下:





[html]
​​view plain​​​
​​​copy​​





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



二.Android客户端

得到HttpClient代码:


[html]
​​view plain​​​
​​​copy​​





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


得到HttpPost:




[java]
​​view plain​​​
​​​copy​​





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


访问网络代码:





[java]
​​view plain​​​
​​​copy​​





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

举报

相关推荐

0 条评论