博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ContentType的一些值
阅读量:4320 次
发布时间:2019-06-06

本文共 4476 字,大约阅读时间需要 14 分钟。

string extension; 
extension = extension.ToUpper(); 
string contentType;
if(extension == "*") 
 contentType = "application/octet-stream"; 
else if(extension == "323") 
 contentType = "text/h323"; 
else if(extension == "ACX") 
 contentType = "application/internet-property-stream"; 
else if(extension == "AI") 
 contentType = "application/postscript"; 
else if(extension == "AIF") 
 contentType = "audio/x-aiff"; 
else if(extension == "AIFC") 
 contentType = "audio/x-aiff"; 
else if(extension == "AIFF") 
 contentType = "audio/x-aiff"; 
else if(extension == "ASF") 
 contentType = "video/x-ms-asf"; 
else if(extension == "SR") 
 contentType = "video/x-ms-asf"; 
else if(extension == "SX") 
 contentType = "video/x-ms-asf"; 
else if(extension == "AU") 
 contentType = "audio/basic"; 
else if(extension == "AVI") 
 contentType = "video/x-msvideo"; 
else if(extension == "AXS") 
 contentType = "application/olescript"; 
else if(extension == "BAS") 
 contentType = "text/plain"; 
else if(extension == "BCPIO") 
 contentType = "application/x-bcpio"; 
else if(extension == "BIN") 
 contentType = "application/octet-stream"; 
else if(extension == "BMP") 
 contentType = "image/bmp"; 
else if(extension == "C") 
 contentType = "text/plain"; 
else if(extension == "CAT") 
 contentType = "application/vnd.ms-pkiseccat"; 
else if(extension == "CDF") 
 contentType = "application/x-cdf"; 
else if(extension == "CER") 
 contentType = "application/x-x509-ca-cert"; 
else if(extension == "CLASS") 
 contentType = "application/octet-stream"; 
else if(extension == "CLP") 
 contentType = "application/x-msclip"; 
else if(extension == "CMX") 
 contentType = "image/x-cmx"; 
else if(extension == "COD") 
 contentType = "image/cis-cod"; 
else if(extension == "CPIO") 
 contentType = "application/x-cpio"; 
else if(extension == "CRD") 
 contentType = "application/x-mscardfile"; 
else if(extension == "CRL") 
 contentType = "application/pkix-crl"; 
else if(extension == "CRT") 
 contentType = "application/x-x509-ca-cert"; 
else if(extension == "CSH") 
 contentType = "application/x-csh"; 
else if(extension == "CSS") 
 contentType = "text/css"; 
else if(extension == "DCR") 
 contentType = "application/x-director"; 
else if(extension == "DER") 
 contentType = "application/x-x509-ca-cert"; 
else if(extension == "DIR") 
 contentType = "application/x-director"; 
else if(extension == "DLL") 
 contentType = "application/x-msdownload"; 
else if(extension == "DMS") 
 contentType = "application/octet-stream"; 
else if(extension == "DOC") 
 contentType = "application/msword"; 
else if(extension == "DOT") 
 contentType = "application/msword"; 
else if(extension == "DVI") 
 contentType = "application/x-dvi"; 
else if(extension == "DXR") 
 contentType = "application/x-director"; 
else if(extension == "EPS") 
 contentType = "application/postscript"; 
else if(extension == "ETX") 
 contentType = "text/x-setext"; 
else if(extension == "EVY") 
 contentType = "application/envoy"; 
else if(extension == "EXE") 
 contentType = "application/octet-stream"; 
else if(extension == "FIF") 
 contentType = "application/fractals"; 
else if(extension == "FLR") 
 contentType = "x-world/x-vrml"; 
else if(extension == "GIF") 
 contentType = "image/gif"; 
else if(extension == "GTAR") 
 contentType = "application/x-gtar"; 
else if(extension == "GZ") 
 contentType = "application/x-gzip"; 
else if(extension == "H") 
 contentType = "text/plain"; 
else if(extension == "HDF") 
 contentType = "application/x-hdf"; 
else if(extension == "HLP") 
 contentType = "application/winhlp"; 
else if(extension == "HQX") 
 contentType = "application/mac-binhex40"; 
else if(extension == "HTA") 
 contentType = "application/hta"; 
else if(extension == "HTC") 
 contentType = "text/x-component"; 
else if(extension == "HTM") 
 contentType = "text/html"; 
else if(extension == "HTML") 
 contentType = "text/html"; 
else if(extension == "HTT") 
 contentType = "text/webviewhtml"; 
else if(extension == "ICO") 
 contentType = "image/x-icon"; 
else if(extension == "IEF") 
 contentType = "image/ief"; 
else if(extension == "III") 
 contentType = "application/x-iphone"; 
else if(extension == "INS") 
 contentType = "application/x-internet-signup"; 
else if(extension == "ISP") 
 contentType = "application/x-internet-signup"; 
else if(extension == "JFIF") 
 contentType = "image/pipeg"; 
else if(extension == "JPE") 
 contentType = "image/jpeg"; 
else if(extension == "JPEG") 
 contentType = "image/jpeg"; 
else if(extension == "ZIP") 
 contentType = "application/x-zip-compressed"; 
else if(extension == "RAR") 
 contentType = "application/octet-stream";
感谢网络的力量

转载于:https://www.cnblogs.com/jerryjaord/archive/2010/08/24/1807210.html

你可能感兴趣的文章
python3 序列分片记录
查看>>
Atitit.git的存储结构and 追踪
查看>>
atitit 读书与获取知识资料的attilax的总结.docx
查看>>
B站 React教程笔记day2(3)React-Redux
查看>>
找了一个api管理工具
查看>>
Part 2 - Fundamentals(4-10)
查看>>
使用Postmark测试后端存储性能
查看>>
NSTextView 文字链接的定制化
查看>>
第五天站立会议内容
查看>>
ATMEGA16 IOport相关汇总
查看>>
JAVA基础-多线程
查看>>
面试题5:字符串替换空格
查看>>
[Codevs] 线段树练习5
查看>>
Amazon
查看>>
component-based scene model
查看>>
Echart输出图形
查看>>
hMailServer搭建简单邮件系统
查看>>
从零开始学习jQuery
查看>>
Spring+SpringMVC+MyBatis深入学习及搭建(四)——MyBatis输入映射与输出映射
查看>>
opacity半透明兼容ie8。。。。ie8半透明
查看>>