asp.net-mvc – 如何为ASP.NET 4.5 Web API创建MultipartFormFormatter

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何为ASP.NET 4.5 Web API创建MultipartFormFormatter前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这些链接对我没有帮助:

> Way 1
> Way 2

例:

  1. //Model:
  2. public class Group
  3. {
  4. public int Id { get; set; }
  5. public File File { get; set; }
  6. }
  7.  
  8. //Controller:
  9. [HttpPost]
  10. public void SaveGroup([FromBody]Group group) {}
  11.  
  12. //Formatter:
  13. public class MultipartFormFormatter : MediaTypeFormatter
  14. {
  15. private const string StringMultipartMediaType = "multipart/form-data";
  16.  
  17. public MultipartFormFormatter()
  18. {
  19. this.SupportedMediaTypes.Add(new MediaTypeHeaderValue(StringMultipartMediaType));
  20.  
  21. }
  22.  
  23. public override bool CanReadType(Type type)
  24. {
  25. return true;
  26. }
  27.  
  28. public override bool CanWriteType(Type type)
  29. {
  30. return false;
  31. }
  32.  
  33. public async override Task<object> ReadFromStreamAsync(Type type,Stream readStream,HttpContent content,IFormatterLogger formatterLogger)
  34. {
  35. //Implementation? What here should be?
  36. }
  37. }

ReadFromStreamAsync方法应该返回什么?

如何使它能够正确地将参数传递给动作?

解决方法

  1. public class MultipartFormFormatter : FormUrlEncodedMediaTypeFormatter
  2. {
  3. private const string StringMultipartMediaType = "multipart/form-data";
  4. private const string StringApplicationMediaType = "application/octet-stream";
  5.  
  6. public MultipartFormFormatter()
  7. {
  8. this.SupportedMediaTypes.Add(new MediaTypeHeaderValue(StringMultipartMediaType));
  9. this.SupportedMediaTypes.Add(new MediaTypeHeaderValue(StringApplicationMediaType));
  10. }
  11.  
  12. public override bool CanReadType(Type type)
  13. {
  14. return true;
  15. }
  16.  
  17. public override bool CanWriteType(Type type)
  18. {
  19. return false;
  20. }
  21.  
  22. public override async Task<object> ReadFromStreamAsync(Type type,IFormatterLogger formatterLogger)
  23. {
  24. var parts = await content.ReadAsMultipartAsync();
  25. var obj = Activator.CreateInstance(type);
  26. var propertiesFromObj = obj.GetType().GetRuntimeProperties().ToList();
  27.  
  28. foreach (var property in propertiesFromObj.Where(x => x.PropertyType == typeof(FileModel)))
  29. {
  30. var file = parts.Contents.FirstOrDefault(x => x.Headers.ContentDisposition.Name.Contains(property.Name));
  31.  
  32. if (file == null || file.Headers.ContentLength <= 0) continue;
  33.  
  34. try
  35. {
  36. var fileModel = new FileModel(file.Headers.ContentDisposition.FileName,Convert.ToInt32(file.Headers.ContentLength),ReadFully(file.ReadAsStreamAsync().Result));
  37. property.SetValue(obj,fileModel);
  38. }
  39. catch (Exception e)
  40. {
  41. }
  42. }
  43.  
  44. foreach (var property in propertiesFromObj.Where(x => x.PropertyType != typeof(FileModel)))
  45. {
  46. var formData = parts.Contents.FirstOrDefault(x => x.Headers.ContentDisposition.Name.Contains(property.Name));
  47.  
  48. if (formData == null) continue;
  49.  
  50. try
  51. {
  52. var strValue = formData.ReadAsStringAsync().Result;
  53. var valueType = Nullable.GetUnderlyingType(property.PropertyType) ?? property.PropertyType;
  54. var value = Convert.ChangeType(strValue,valueType);
  55. property.SetValue(obj,value);
  56. }
  57. catch (Exception e)
  58. {
  59. }
  60. }
  61.  
  62. return obj;
  63. }
  64.  
  65. private byte[] ReadFully(Stream input)
  66. {
  67. var buffer = new byte[16 * 1024];
  68. using (var ms = new MemoryStream())
  69. {
  70. int read;
  71. while ((read = input.Read(buffer,buffer.Length)) > 0)
  72. {
  73. ms.Write(buffer,read);
  74. }
  75. return ms.ToArray();
  76. }
  77. }
  78. }
  79.  
  80. public class FileModel
  81. {
  82. public FileModel(string filename,int contentLength,byte[] content)
  83. {
  84. Filename = filename;
  85. ContentLength = contentLength;
  86. Content = content;
  87. }
  88.  
  89. public string Filename { get; set; }
  90.  
  91. public int ContentLength { get; set; }
  92.  
  93. public byte[] Content { get; set; }
  94.  
  95. }

猜你在找的asp.Net相关文章