case "doc": ContentType = "application/msword"; bre
case "doc":
ContentType = "application/msword";
break;
case "pdf":
ContentType = "application/pdf";
break;
case "jpg":
case "jpeg":
ContentType = "image/jpeg";
break;
case "gif":
ContentType = "image/gif";
break;
case "zip":
ContentType = "application/zip";
break;
case "txt":
ContentType = "text/plain";
break;
case "htm":
case "html":
ContentType = "text/html";
break;
case "xls":
ContentType = "application/vnd.ms-excel";
break;
case "ppt":
ContentType = "application/vnd.ms-powerpoint";
break;
default:
ContentType = "application/octet-stream";
break;

相关文章:

  • 2021-11-10
  • 2021-06-03
  • 2021-08-05
  • 2021-05-19
  • 2021-10-26
  • 2022-12-23
猜你喜欢
  • 2021-10-31
  • 2021-12-05
  • 2022-12-23
相关资源
相似解决方案