从 Azure 存储流式传输 blob - 无法访问已关闭的流

Streaming a blob from Azure storage - Cannot access a closed Stream

我正在使用 asp.net 网络表单。

我在 Azure 存储中有 pdf 需要处理。为此,我正在使用 PDFJet 库。

我愿意 流式传输 pdf 而无需下载它,因为我必须处理大量 pdf。

我正在使用以下函数从 Azure 流式传输 pdf:

public MemoryStream DownloadToMemoryStream(DTO.BlobUpload b)
{
    CloudStorageAccount storageAccount = Conn.SNString(b.OrgID);
    CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
    CloudBlobContainer container = blobClient.GetContainerReference(b.Container);
    CloudBlockBlob blob = container.GetBlockBlobReference(b.FileName);
    var sasToken = blob.GetSharedAccessSignature(new SharedAccessBlobPolicy()
    {
        Permissions = SharedAccessBlobPermissions.Read,
        SharedAccessExpiryTime = DateTime.UtcNow.AddMinutes(10),//assuming the blob can be downloaded in 10 miinutes
    }, new SharedAccessBlobHeaders()
    {
        ContentDisposition = "attachment; filename=file-name"
    });
    using (MemoryStream ms = new MemoryStream())
    {
        blob.DownloadToStream(ms);
        return ms;
    }

}

并在aspx.cs页面中使用以下代码读取pdf流:

BufferedStream pdfScript = new BufferedStream(new FileStream(ScriptPath + Script, FileMode.Open));

SortedDictionary<Int32, PDFobj> objects = pdfFinalScript.Read(pdfScript);

但是我收到错误消息:无法访问已关闭的流

如果我下载pdf到磁盘,这是我使用的功能,这个工作但不实用:

blockBlob.DownloadToFile(b.LocalPath + b.FileName, FileMode.Create);

BufferedStream pdfScript = new BufferedStream(new FileStream(ScriptPath + Script, FileMode.Open));

感谢您的帮助。

Cannot access a closed Stream

根据错误信息,需要重新设置码流位置

请尝试在 return 之前重置流位置。 blob.DownloadToStream(毫秒); ms.Position = 0; //添加这段代码 return 毫秒;

更新:

ms 如果不在使用部分则已关闭。所以请尝试使用以下代码。

MemoryStream stream = new MemoryStream();
using (MemoryStream ms = new MemoryStream())
{
  blob.DownloadToStream(ms);
  ms.Position = 0
  ms.CopyTo(stream);
  stream.Position = 0;
  return stream;
}