gpt4 book ai didi

c# - sharpziplib + 提取单个文件

转载 作者:行者123 更新时间:2023-11-30 13:42:26 26 4
gpt4 key购买 nike

每当我尝试获取文件时,输入流的长度 (s.Length) 始终为零,我做错了什么? ZipEntry 有效且具有正确的文件大小等。

这是我使用的代码:

public static byte[] GetFileFromZip(string zipPath, string fileName)
{
byte[] ret = null;
ZipFile zf = new ZipFile(zipPath);
ZipEntry ze = zf.GetEntry(fileName);

if (ze != null)
{
Stream s = zf.GetInputStream(ze);
ret = new byte[s.Length];
s.Read(ret, 0, ret.Length);
}

return ret;
}

最佳答案

输入流没有长度。请改用 ZipEntry.Size

public static byte[] GetFileFromZip(string zipPath, string fileName)
{
byte[] ret = null;
ZipFile zf = new ZipFile(zipPath);
ZipEntry ze = zf.GetEntry(fileName);

if (ze != null)
{
Stream s = zf.GetInputStream(ze);
ret = new byte[ze.Size];
s.Read(ret, 0, ret.Length);
}

return ret;
}

关于c# - sharpziplib + 提取单个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2971079/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com