Content-Type
MediaType,即是Internet Media Type,互联网媒体类型;也叫做MIME类型,在Http协议消息头中,使用Content-Type来表示具体请求中的媒体类型信息
例如: Content-Type: text/html;charset:utf-8;
常见的媒体格式类型如下:
-
@H_502_19@ text/html : HTML格式
@H_502_19@ text/plain :纯文本格式
@H_502_19@ text/xml : XML格式 @H_502_19@ image/gif :gif图片格式
@H_502_19@ image/jpeg :jpg图片格式
@H_502_19@ image/png:png图片格式
以application开头的媒体格式类型:
-
@H_502_19@ application/xhtml+xml :XHTML格式
@H_502_19@ application/xml : XML数据格式
@H_502_19@ application/atom+xml :Atom XML聚合格式
@H_502_19@ application/json : JSON数据格式 @H_502_19@ application/pdf :pdf格式
@H_502_19@ application/msword : Word文档格式 @H_502_19@ application/octet-stream : 二进制流数据(如常见的文件下载) @H_502_19@ application/x-www-form-urlencoded : <form encType=””>中默认的encType,form表单数据被编码为key/value格式发送到服务器(表单默认的提交数据的格式)