c# – 如何实例化一个HttpPostedFile

我正在尝试与一个我无法控制的系统进行通信,但是其中一个方法需要一个HttpPostedFile在我的代码中,我有一个字节数组.有谁有一个例子来实例化一个HttpPostedFile,因为我知道它的构造函数是内部的?

我发现最好的是this SO post,它使用反射,但是他们被引导到另一个方向,我不能采取,因为我无法修改第三方系统方法签名.

解决方法

这真的是真的hacky代码,但以下似乎适用于我:
public HttpPostedFile ConstructHttpPostedFile(byte[] data,string filename,string contentType) {
  // Get the System.Web assembly reference
  Assembly systemWebAssembly = typeof (HttpPostedFileBase).Assembly;
  // Get the types of the two internal types we need
  Type typeHttpRawUploadedContent = systemWebAssembly.GetType("System.Web.HttpRawUploadedContent");
  Type typeHttpInputStream = systemWebAssembly.GetType("System.Web.HttpInputStream");

  // Prepare the signatures of the constructors we want.
  Type[] uploadedParams = { typeof(int),typeof(int) };
  Type[] streamParams = {typeHttpRawUploadedContent,typeof (int),typeof (int)};
  Type[] parameters = { typeof(string),typeof(string),typeHttpInputStream };

  // Create an HttpRawUploadedContent instance
  object uploadedContent = typeHttpRawUploadedContent
    .GetConstructor(BindingFlags.NonPublic | BindingFlags.Instance,null,uploadedParams,null)
    .Invoke(new object[]{data.Length,data.Length});

  // Call the AddBytes method
  typeHttpRawUploadedContent
    .GetMethod("AddBytes",BindingFlags.NonPublic | BindingFlags.Instance)
    .Invoke(uploadedContent,new object[] {data,data.Length});

  // This is necessary if you will be using the returned content (ie to Save)
  typeHttpRawUploadedContent
    .GetMethod("DoneAddingBytes",null);

  // Create an HttpInputStream instance
  object stream = (Stream)typeHttpInputStream
    .GetConstructor(BindingFlags.NonPublic | BindingFlags.Instance,streamParams,null)
    .Invoke(new object[] {uploadedContent,data.Length});

  // Create an HttpPostedFile instance
  HttpPostedFile postedFile = (HttpPostedFile)typeof(HttpPostedFile)
    .GetConstructor(BindingFlags.NonPublic | BindingFlags.Instance,parameters,null)
    .Invoke(new object[] {filename,contentType,stream});

  return postedFile;
}

相关文章

在项目中使用SharpZipLib压缩文件夹的时候,遇到如果目录较深,则压缩包中的文件夹同样比较深的问题。比...
项目需要,几十万张照片需要计算出每个照片的特征值(调用C++编写的DLL)。 业务流程:选择照片...
var array = new byte[4]; var i = Encoding.UTF8.GetBytes(100.ToString("x2"));//...
其实很简单,因为Combox的Item是一个K/V的object,那么就可以把它的items转换成IEnumerable<Dic...
把.net4.6安装包打包进安装程序。 关键脚本如下: 头部引用字符串对比库 !include "WordFunc....
项目需求(Winform)可以批量打印某个模板,经过百度和摸索,使用iTextSharp+ZXing.NetʿreeSp...