请求报文格式:
GET /sample.jsp HTTP/1.1
表示使用 GET 方法请求 /sample.jsp
资源,并使用 HTTP/1.1 协议。- GET/sample.jspHTTP/1.1 请求行
- Accept:image/gif.image/jpeg, 请求头部
- Accept-Language:zh-cn
- Connection:Keep-Alive
- Host:localhost
- User-Agent:Mozila/4.0(compatible;MSIE5.01;Window NT5.0)
- Accept-Encoding:gzip,deflate
-
- username=jinqiao&password=1234 请求主体
响应报文:
HTTP/1.1 200 OK
表示使用 HTTP/1.1 协议,状态码为 200(表示成功),以及原因短语“OK”。- HTTP/1.1 200 OK
- Server:Apache Tomcat/5.0.12
- Date:Mon,6Oct2003 13:23:42 GMT
- Content-Length:112
-
- <html>
- <head>
- <title>HTTP响应示例<title>
- </head>
- <body>
- Hello HTTP!
- </body>
- </html>