我正在使用 asp.net MVC Web 应用程序。我的要求是将字节数组转换为 HttpPostedFileBase
。我正在使用文件路径创建字节数组。
我参考了这个问题
how to convert a byte[] to HttpPostedFileBase using c#(由https://stackoverflow.com/users/2678145/zerratar回答)
当我使用该代码时,将转换后的文件保存到服务器时出现异常。异常是方法或操作未实现。
我以为我收到错误,因为转换后的文件的内容类型和文件名返回空值。
所以我稍微改变了这样的代码。
public class HttpPostedFileForStl : HttpPostedFileBase
{
private readonly byte[] fileBytes;
public HttpPostedFileForStl(byte[] fileBytes, string fileName)
{
this.fileBytes = fileBytes;
this.InputStream = new MemoryStream(fileBytes);
this.FileName = fileName;
}
public override int ContentLength => fileBytes.Length;
public override string FileName { get; }
public override string ContentType { get; } = "application/octet-stream";
public override Stream InputStream { get; }
}
我将字节数组和文件名传递给这个类。 现在我在转换后的文件中获得了适当的文件名和内容类型,但异常仍然存在。有人可以帮忙吗?