简单查询Content-Type类型方式!

MediaType,即是Internet Media Type,互联网媒体类型;也叫做MIME类型, 在Http协议消息头中,使用Content-Type来表示具体请求中的媒体类型信息。

我们可以手动查询Content-Type类型方式(以Tomacat为例)

1 . 找到Tomacat的config文件下的web.xml在这里插入图片描述
2 . 配置文件内搜索想查找类型
在这里插入图片描述

  • 以下为常见的媒体格式类型:

text/html:HTML格式
text/plain:纯文本格式
text/xml:XML格式
image/gif:gif图片格式
image/jpeg:jpg图片格式
image/png:png图片格式

  • 以application开头的媒体格式类型:

application/xhtml+xml:XHTML格式
application/xml:XML数据格式
application/atom+xml:Atom XML聚合格式
application/json:JSON数据格式
application/pdf:pdf格式
application/msword:Word文档格式
application/octet-stream:二进制流数据(常见的文件下载)
application/x-www-form-urlencoded:表单中默认的encType,表单数据被编码为key/value格式发送到服务器

  • 另外一种常见的媒体格式是上传文件时使用:

multipart/form-data:需要在表单中进行文件上传时,就需要使用该格式。

发布了9 篇原创文章 · 获赞 5 · 访问量 1171

猜你喜欢

转载自blog.csdn.net/weixin_44200984/article/details/102717282