1. class=java name="code">HTTP 压缩可以大大提高浏览网站的速度,它的原理是,在客户端请求网页后,从服务器端将网页文件压缩,再下载到客户端,由客户端的浏览器负责解压缩并浏览。相对于普通的浏览过程 HTML ,CSS,Javascript , Text ,它可以节省 40% 左右的流量。更为重要的是,它可以对动态生成的,包括 CGI 、 PHP , JSP , ASP , Servlet,SHTML 等输出的网页也能进行压缩,压缩效率惊人
2. Connector port ="80" maxHttpHeaderSize ="8192"
3. maxThreads ="150" minSpareThreads ="25" maxSpareThreads ="75"
4. enableLookups ="false" redirectPort ="8443" acceptCount ="100"
5. connectionTimeout ="20000" disableUploadTimeout ="true" URIEncoding ="utf-8" />
6.
7. Tomcat 是根据浏览器请求头中的 accept-encoding来判断浏览器是否支持压缩功能,如果这个值包含有 gzip ,就表明浏览器支持 gzip 压缩内容的浏览,所以我们可以用httpclient 来写一个这样的简单测试程序
8.
9.
10.
11. 格式的时候, 服务器端会传输gzip格式的数据。
12.
13. 技术细节上讲,就是 http request 头中 有 "Accept-Encoding", "gzip" ,response 中就有返回头Content-Encoding=gzip 。
14.
15.
16.
17. 客户端,没有用gzip 格式访问。
18.
19. 客户端 request 头中加入 "Accept-Encoding", "gzip" ,来让服务器传送gzip 数据。
20.
21. 具体代码如下。
22.
23. private String getJsonStringFromGZIP(HttpResponse response) {
24. String jsonString = null;
25. try {
26. InputStream is = response.getEntity().getContent();
27. BufferedInputStream bis = new BufferedInputStream(is);
28. bis.mark(2);
29. // 取前两个字节
30. byte[] header = new byte[2];
31. int result = bis.read(header);
32. // reset输入流到开始位置
33. bis.reset();
34. // 判断是否是GZIP格式
35. int headerData = getShort(header);
36. // Gzip 流 的前两个字节是 0x1f8b
37. if (result != -1 && headerData == 0x1f8b) { LogUtil.d("HttpTask", " use GZIPInputStream ");
38. is = new GZIPInputStream(bis);
39. } else {
40. LogUtil.d("HttpTask", " not use GZIPInputStream");
41. is = bis;
42. }
43. InputStreamReader reader = new InputStreamReader(is, "utf-8");
44. char[] data = new char[100];
45. int readSize;
46. StringBuffer sb = new StringBuffer();
47. while ((readSize = reader.read(data)) > 0) {
48. sb.append(data, 0, readSize);
49. }
50. jsonString = sb.toString();
51. bis.close();
52. reader.close();
53. } catch (Exception e) {
54. LogUtil.e("HttpTask", e.toString(),e);
55. }
56.
57. LogUtil.d("HttpTask", "getJsonStringFromGZIP net output : " + jsonString );
58. return jsonString;
59. }
60.
61. private int getShort(byte[] data) {
62. return (int)((data[0]8) | data[1]&0xFF);
63. }
64.
65. ,注意实际使用中,我发现gzip 流前两个字节是0x1e8b ,不是0x1f8b .后来检查一下code ,代码处理错误,加上第二个字节的时候需 &0xFF
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.e1idc.net