激情久久久_欧美视频区_成人av免费_不卡视频一二三区_欧美精品在欧美一区二区少妇_欧美一区二区三区的

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|編程技術(shù)|正則表達式|

服務(wù)器之家 - 編程語言 - JAVA教程 - http協(xié)議進階之Transfer-Encoding和HttpCore實現(xiàn)詳解

http協(xié)議進階之Transfer-Encoding和HttpCore實現(xiàn)詳解

2020-09-20 13:48海鳥 JAVA教程

這篇文章主要給大家介紹了http協(xié)議之Transfer-Encoding和HttpCore實現(xiàn)的相關(guān)資料,文中介紹的非常詳細(xì),相信對大家具有一定的參考價值,需要的朋友們下面來一起看看吧。

Transfer-Encoding簡介

transfer-eccoding所描述的是消息請求(request)和響應(yīng)(response)所附帶的實體對象(entity)的傳輸形式,規(guī)范定義格式如下:

?
1
Transfer-Encoding = "Transfer-Encoding" ":" 1#transfer-coding 

舉個例子:Transfer-Encoding: chunked

transfer-encoding的可選值有:chunked,identity ;

transfer-encoding的可選值有:chunked,identity,從字面意義可以理解,前者指把要發(fā)送傳輸?shù)臄?shù)據(jù)切割成一系列的塊數(shù)據(jù)傳輸,后者指傳輸時不做任何處理,自身的本質(zhì)數(shù)據(jù)形式傳輸。舉個例子,如果我們要傳輸一本“紅樓夢”小說到服務(wù)器,chunked方式就會先把這本小說分成一章一章的,然后逐個章節(jié)上傳,而identity方式則是從小說的第一個字按順序傳輸?shù)阶詈笠粋€字結(jié)束。

相關(guān)的頭定義

Content-Encoding : content-encoding和transfer-encoding所作用的對象不同,行為目標(biāo)也不同,前者是對數(shù)據(jù)內(nèi)容采用什么樣的編碼方式,后者是對數(shù)據(jù)傳輸采用什么樣的編碼。前者通常是對數(shù)據(jù)內(nèi)容進行一些壓縮編碼操作,后者通常是對傳傳輸采用分塊策略之類的。

Content-length : content-length頭的作用是指定待傳輸?shù)膬?nèi)容的字節(jié)長度。比如上面舉的例子中,我們要上傳一本紅樓夢小說,則可以指定其長度大小,如:content-length:731017。細(xì)心的讀者可能會有疑惑,它和transfer-encoding又有什么關(guān)系呢?如果想知道它們的關(guān)系,只要反過來問下自己,為什么transfer-encoding會有identity和chunked兩種,各在什么上下文情景中要用到。比如chunked方式,把數(shù)據(jù)分塊傳輸在很多地方就非常有用,如服務(wù)端在處理一個復(fù)雜的問題時,其返回結(jié)果是階段性的產(chǎn)出,不能一次性知道最終的返回的總長度(content-lenght值),所以這時候返回頭中就不能有content-lenght頭信息,有也要忽略處理。所以你可以這樣理解,transfer-encoding在不能一次性確定消息實體(entity)內(nèi)容時自定義一些傳輸協(xié)議,如果能確定的話,則可以在消息頭中加入content-length頭信息指示其長度,可以把transfer-encoding和content-length看成互斥性的兩種頭。

transfer-encoding詳解

chunked格式(rfc2616 3.6.1):

?
1
2
3
4
5
6
7
8
9
10
11
12
13
Chunked-Body = *chunk
          last-chunk
          trailer
          CRLF
chunk  = chunk-size [ chunk-extension ] CRLF
          chunk-data CRLF
chunk-size = 1*HEX
last-chunk = 1*("0") [ chunk-extension ] CRLF
chunk-extension= *( ";" chunk-ext-name [ "=" chunk-ext-val ] )
chunk-ext-name = token
chunk-ext-val = token | quoted-string
chunk-data = chunk-size(OCTET)
trailer = *(entity-header CRLF)

還是以上傳“紅樓夢”這本書舉例:

http協(xié)議進階之Transfer-Encoding和HttpCore實現(xiàn)詳解

24E5是指第一個塊數(shù)據(jù)長度為24E5(16進制格式字符串表示),CRLF為換行控制符。緊接著是第一個塊數(shù)據(jù)內(nèi)容,其長度就是上面定義的24E5,以CRLF標(biāo)志結(jié)束。3485是指第二塊數(shù)據(jù)長度為3485,CRLF結(jié)束,然后后面是第二塊的數(shù)據(jù)內(nèi)容......,以這樣的格式直到所有的塊數(shù)據(jù)結(jié)束。最后以“0”CRLF結(jié)束,表示數(shù)據(jù)傳輸完成(這里對比rfc規(guī)范內(nèi)容,省略了chunk-extension和trailer的東西,因為這并不重要)。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
public class Main {
 
 /**
  * @param args
  */
 
 public static final int CR = 13; // <US-ASCII CR, carriage return (13)>
 public static final int LF = 10; // <US-ASCII LF, linefeed (10)>
 
 public static void main(String[] args) throws Exception{
  Socket socket = new Socket("localhost",8080);
  OutputStream out = socket.getOutputStream();
  InputStream in = socket.getInputStream();
  
  //send requestline
  out.write("POST /web/Hello HTTP/1.1".getBytes());
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  
  //send request header
  out.write("Host:localhost:8080".getBytes());
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  out.write("Accept-Encoding:gzip,deflate".getBytes());
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  out.write("Transfer-Encoding:chunked".getBytes());// 指定transfer-encodeing為chunked方式
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  out.write("Content-Type:application/x-www-form-urlencoded;charset=utf-8".getBytes());
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  
  // CRLF between headers and entity
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  
  /*
   * send chunked data
   */
  //send the first chunked data:hello,world
  //the first chunked data's size : 11
  out.write("B".getBytes());
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  //the first chunked data's content : hello,world
  out.write("hello,world".getBytes());
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  //send the second chunked data:tony
  //the first chunked data's size : 4
  out.write("4".getBytes());
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  //the first chunked data's content : hello,world
  out.write("tony".getBytes());
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  //send the chunked data end flag
  out.write("0".getBytes());
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  //send CRLF
  out.write(CR & 0xFF);
  out.write(LF & 0xFF);
  
  out.flush();
  
  //
  byte[] buffer = new byte[512];
  ByteArrayOutputStream bufferStream = new ByteArrayOutputStream();
  int len = -1;
  while((len = in.read(buffer)) != -1){
   bufferStream.write(buffer,0,len);
  }
  
  System.out.println(new String(bufferStream.toByteArray()));
  
  socket.close();
   
 }

上面這段代碼發(fā)了兩塊數(shù)據(jù),第一塊是“hello,world”這11個字節(jié)長度的字符,第二塊發(fā)送了“tony”四個字長的數(shù)據(jù)塊。在服務(wù)端將收到“hello,worldtony”這個字符串.

HttpCore對transfer-encoding的實現(xiàn)

http協(xié)議進階之Transfer-Encoding和HttpCore實現(xiàn)詳解

所以不管是對輸入流(InputStream),還是輸出流(OutputStream),httpcore都有三種實現(xiàn):contentlength,identity,chunked。這是完全按照http規(guī)范實現(xiàn)的。這里再重復(fù)總結(jié)下這三種這間的關(guān)系。

當(dāng)指定了"content-length"頭信息時,說明已經(jīng)確定消息體(entity)的長度大小,其值必需為非負(fù)整數(shù)。反之,如果有“transfer-encoding”頭信息時,其值為“chunked”或者“identity”,說明不確定消息體的大小,這時應(yīng)該不存在“content-length”頭。

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家學(xué)習(xí)或者工作能帶來一定的幫助,如果有疑問大家可以留言交流,謝謝大家對服務(wù)器之家的支持。

原文鏈接:http://www.cnblogs.com/jcli/archive/2012/10/19/2730440.html

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 人人看人人舔 | 99爱视频在线观看 | 一本色道久久综合狠狠躁篇适合什么人看 | av成人免费观看 | 九九热视频在线免费观看 | chengrenzaixian| 欧美黄色一级片在线观看 | 色婷婷a| 毛片电影在线看 | 亚洲第一激情网 | freexxxhd喷水| av观看国产 | 久久99精品久久 | 直接在线观看的三级网址 | 免费观看欧美一级片 | 国产手机av在线 | 91香焦视频| 成人视屏在线 | 27xxoo无遮挡动态视频 | 国产欧美日韩在线播放 | av国产在线被下药迷网站 | 又黄又爽免费无遮挡在线观看 | 加勒比婷婷色综合久久 | 蜜桃欧美性大片免费视频 | 欧美成人免费一级 | 久久免费视频一区 | 国产一级免费在线视频 | 深夜免费视频 | 未成年人在线观看 | 中国性xxx | cosplay裸体福利写真 | 九九热视频在线免费观看 | 久久久久久久久久久国产精品 | 国产免费资源 | 九九热精品在线 | 98国内自拍在线视频 | 国产三级三级三级三级 | 国产高清自拍一区 | 日韩精品久久久 | 欧美成人性色 | 国产精品嘿咻嘿咻在线播放 |