HttpWebRequest中的ContentType详解

时间:2015-12-19 01:26:15   收藏:0   阅读:12108

1.参考网络资源:

http://blog.csdn.net/blueheart20/article/details/45174399  ContentType详解

http://www.tuicool.com/articles/eiauAb   Ajax的请求注意

http://www.cnblogs.com/kissdodog/archive/2013/04/06/3002779.html HttpWebRequest的详解

http://tool.oschina.net/commons  常见的文件ContentType对照表

 注意数据的位置:QueryString ,Form Data,Request Payload

1.  Content-Type

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

  1. 类型格式:type/subtype(;parameter)? type  
  2. 主类型,任意的字符串,如text,如果是*号代表所有;   
  3. subtype 子类型,任意的字符串,如html,如果是*号代表所有;   
  4. parameter 可选,一些参数,如Accept请求头的q参数, Content-Type的 charset参数。   

 例如: Content-Type: text/html;charset:utf-8;

 常见的媒体格式类型如下:

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

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

     以上就是我们在日常的开发中,经常会用到的若干content-type的内容格式

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!