标签:http 使用 os io strong 文件 数据 ar
Request :
请求行 -- GET|POST /1.html http/1.1 //请求方式、页面
请求头 --
accept:text/html,image/* //告诉服务器,客户机支持的文件格式
accept-charset:utf-8 //客户机的采用的编码
accept-encoding:gzip //客户机支持的编码
host:localhost //客户机想访问的主机名
if-modified-since: 2014-09-01 18:00:00 GMT //告诉服务器,客户机缓存的时间点
referer: http: //www.xx.com/index.html //告诉服务器,从哪里发来的请求
user-agent: chome/24 (compatible; MSIE 5.5; Windows7) //告诉服务器,客户机的软件环境
connection: close | keep-alive //连接完后断开还是保持
date: 2014-09-01 18:00:00 GMT //请求时间
---空一行
body --当请求方式post的时候可以用以附带数据
-----------------------------------------------------------------------
Reponse :
状态行 -- http/1.1 200 ok //http版本 状态码 状态说明
1xx //服务器已经接到请求,但客户机再一次请求才能完成下面工作
2xx //接收请求并成功响应
3xx //请求不成功,客户机进一步请求
4xx //客户机出错
5xx //服务器出错
响应头 -- //描述服务器信息、通知客户机处理数据的方式
location: http://www.baidu.com //配合302使用告诉客户机去请求baidu
content-encoding:
content-lenght
--空行
body -- //回送给客户机的数据
标签:http 使用 os io strong 文件 数据 ar
原文地址:http://www.cnblogs.com/sunzzz/p/3910330.html