在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 []?
答案 0 :(得分:4)
尝试执行以下操作:
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();
}
}
}
}