首页 > 解决方案 > 将存档文件中的 Stream 转换为 Byte[]

问题描述

在 Net Core 2.1 上,我试图从 ZIP 存档中读取文件。

我需要将每个文件内容转换为 Byte[] 所以我有:

using (ZipArchive archive = ZipFile.OpenRead("Archive.zip")) {

  foreach (ZipArchiveEntry entry in archive.Entries) {

    using (Stream stream = entry.Open()) {

      Byte[] file = new Byte[stream.Length];

      stream.Read(file, 0, (Int32)stream.Length);

    }

  }

}

当我运行它时,我收到错误:

Exception has occurred: CLR/System.NotSupportedException
An exception of type 'System.NotSupportedException' occurred in System.IO.Compression.dll but was not handled in user code: 
'This operation is not supported.' at System.IO.Compression.DeflateStream.get_Length()

如何将内容放入每个文件的 Byte[] 中?

标签: c#asp.net-core.net-corec#-7.0

解决方案


尝试做这样的事情:

using (ZipArchive archive = ZipFile.OpenRead("archieve.zip")) 
{

   foreach (ZipArchiveEntry entry in archive.Entries) 
   {
      using (Stream stream = entry.Open()) 
      {
         byte[] bytes;
         using (var ms = new MemoryStream()) 
         {
            stream.CopyTo(ms);
            bytes = ms.ToArray();
         }
      }
   }
}

推荐阅读