博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Webapi文件上传
阅读量:5314 次
发布时间:2019-06-14

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

1/  multipart/form-data方式 

using Abp.UI;using Abp.Web.Models;using System;using System.Collections.Generic;using System.Configuration;using System.IO;using System.Linq;using System.Net;using System.Net.Http;using System.Threading.Tasks;using System.Web.Http;namespace OwnerSayCar.Web.ApiControllers{    [RoutePrefix("api/upload")]    public class UploadController : ApiController    {        [DontWrapResult]        [Route("img"), HttpPost]        public async Task ImgFromDataUploadAsync()        {            if (!Request.Content.IsMimeMultipartContent())                throw new UserFriendlyException("上传格式不是multipart/form-data");            string UploadImgType = !string.IsNullOrWhiteSpace(ConfigurationManager.AppSettings.Get("UploadImgType")) ?                ConfigurationManager.AppSettings.Get("UploadImgType") : "jpg,png,gif";            string UploadSaveImgPath = !string.IsNullOrWhiteSpace(ConfigurationManager.AppSettings.Get("UploadSaveImgPath")) ?                ConfigurationManager.AppSettings.Get("UploadSaveImgPath") : "/Resource/Images";            int.TryParse(ConfigurationManager.AppSettings.Get("UploadImgMaxByte"), out int UploadImgMaxByte);            UploadImgMaxByte = UploadImgMaxByte > 0 ? UploadImgMaxByte : 5242880;            //创建保存上传文件的物理路径            var root = System.Web.Hosting.HostingEnvironment.MapPath(UploadSaveImgPath);            //如果路径不存在,创建路径              if (!Directory.Exists(root)) Directory.CreateDirectory(root);            var provider = new MultipartFormDataStreamProvider(root);            //读取 MIME 多部分消息中的所有正文部分,并生成一组 HttpContent 实例作为结果            await Request.Content.ReadAsMultipartAsync(provider);            foreach (var file in provider.FileData)            {                //获取上传文件名 这里获取含有双引号'" '                string fileName = file.Headers.ContentDisposition.FileName.Trim('"');                //获取上传文件后缀名                string fileExt = fileName.Substring(fileName.LastIndexOf('.'));                FileInfo fileInfo = new FileInfo(file.LocalFileName);                if (fileInfo.Length > 0 && fileInfo.Length <= UploadImgMaxByte)                {                    if (String.IsNullOrEmpty(fileExt) || Array.IndexOf(UploadImgType.Split(','), fileExt.Substring(1).ToLower()) == -1)                    {                        fileInfo.Delete();                        throw new UserFriendlyException("上传的文件格式不支持");                    }                    else                    {                        //string newFileName = fileInfo.Name + fileExt;                        string newFileName = Guid.NewGuid().ToString() + fileExt;                        //最后保存文件路径                        string saveUrl = Path.Combine(root, newFileName);                        fileInfo.MoveTo(saveUrl);                    }                }                else                {                    fileInfo.Delete();                    throw new UserFriendlyException("上传文件的大小不符合");                }            }        }    }}

Error:

Error reading MIME multipart body part

解决方法:

web.config:

 

转载于:https://www.cnblogs.com/eedc/p/9154856.html

你可能感兴趣的文章
Java队列集合的性能测试
查看>>
eclipse实现代码块折叠-类似于VS中的#region……#endregion
查看>>
IntelliJ IDEA——数据库集成工具(Database)的使用
查看>>
hdu 1671
查看>>
【操作系统】对操作系统的了解
查看>>
一种快速统计SQL Server每个表行数的方法
查看>>
SQL Server索引进阶第十篇:索引的内部结构
查看>>
软件工程第一次作业补充
查看>>
Spring中神奇@aotuWrited
查看>>
强大的XML
查看>>
RecycleView弹性滑动
查看>>
(十一)Jmeter另一种调试工具 HTTP Mirror Server
查看>>
Dubbo集群容错
查看>>
Oracle session连接数和inactive的问题记录【转】
查看>>
mysql 时区设置
查看>>
Oracle树形结构查询之prior的理解
查看>>
segnet 编译与测试
查看>>
linux lsof/netstat查看进程和端口号相关命令:
查看>>
解决Maven管理项目update Maven时,jre自动变为1.5
查看>>
学习笔记:log4j.properties配置
查看>>