Accept(*): text/html,image/* : 浏览器告诉服务器支持的数据类型
mime类型:大类型/小类型
文件类型:jpg -> image/jpg
html文件: html -> text/html
css文件: css-> -> text/css
txt文件: txt - > text/plain
......
查看tomcat/conf/web.xml
Accept-Charset: ISO-8859-1: 告诉服务器浏览器支持的编码
Accept-Encoding(*): gzip,compress: 告诉服务器浏览器支持的网页压缩格式
常见的压缩格式: gzip
服务器首先会把数据进行压缩,压缩之后发生给浏览器(为了节省带宽)
Accept-Language: en-us,zh-cn : 告诉服务器浏览器的语言优先级(支持哪些语言)
Host: www.it315.org:80 : 访问的主机和端口
If-Modified-Since(*): Tue, 11 Jul 2000 18:23:51 GMT: 告诉服务器现在浏览器缓存文件的最后修改时间
Referer(*): http://www.it315.org/index.jsp: 当前资源来自于哪里
Content-Type(*):application/x-www-form-urlencoded 求正文内容类型编码
enctype属性: 请求正文内容类型编码
默认类型:application/x-www-form-urlencoded 非文件上传
显示效果:name=eric&password=123456
其他类型: multipart/form-data 文件上传时
显示效果:
。。。。。。。
User-Agent(*): Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0):浏览器类型
Cookie: name=eric 会话管理相关
Connection: close/Keep-Alive 连接状态
Date: Tue, 11 Jul 2000 18:23:51 GMT 当前请求发出的时间