如何从MemoryStream中解压缩多个文件

时间:2012-02-14 14:56:01

标签: c# asp.net gzip

我正在下载压缩文件并使用以下代码解压缩它:

 WebClient client = new WebClient();
 MemoryStream download = new MemoryStream(client.DownloadData(targetUrl));
 var data = new GZipStream(download, CompressionMode.Decompress, true);

从这里,如何查看压缩存档中的文件并对其进行排序?我知道这个档案中的一个文件是我需要的文件类型(.csv),我需要把它拿出来。如何通过c#?

完成

2 个答案:

答案 0 :(得分:1)

GZipStream用于压缩和解压缩流...您无法使用它来压缩和解压缩多个文件。实际上,你可以,但你应该开发一些方法将这些文件合并为一个流,并且还知道如何使操作反向(从流中获取这些文件)。如果你有一个文件,你可以这样做:

using (var outFile = File.Create(outputFileName))
{
    using (GZipStream gzip = new GZipStream(download, CompressionMode.Decompress))
    {
        var buffer = new byte[4096];
        var numRead = 0;
        while ((numRead = gzip.Read(buffer, 0, buffer.Length)) != 0)
        {
            outFile.Write(buffer, 0, numRead);
        }
    }
}

Here是一篇描述GZipStream如何用于压缩/解压缩多个文件的文章,但正如您所看到的,作者开发了自己的“zip”格式来存储多个文件,并且使用单个流进行压缩GZipStream。

在您的情况下,如果您没有进行压缩,则很可能会收到标准zip文件,在这种情况下,您可以使用名为SharpZipLib的库来解压缩您的内容。

以下是使用SharpZipLib

的示例
using (var s = new ZipInputStream(download) 
{
    ZipEntry theEntry;
    while ((theEntry = s.GetNextEntry()) != null) 
    {
        string directoryName = Path.GetDirectoryName(theEntry.Name);
        string fileName      = Path.GetFileName(theEntry.Name);

        if(fileName == myFileName)
        {
            using (FileStream streamWriter = File.Create(theEntry.Name)) 
            {
                int size = 2048;
                byte[] data = new byte[2048];
                while (true) 
                {
                    size = s.Read(data, 0, data.Length);
                    if (size > 0) 
                    {
                        streamWriter.Write(data, 0, size);
                    } 
                    else 
                    {
                        break;
                    }
                }
            }
        }
    }
}

答案 1 :(得分:0)

您是从某个地方提取ZIP文件并尝试从存档中获取单个文件吗?

你可以使用ZipPackage类来做到这一点。

http://msdn.microsoft.com/en-us/library/system.io.packaging.zippackage.aspx

请参阅GetPart方法专门用于示例代码:

http://msdn.microsoft.com/en-us/library/system.io.packaging.package.getpart.aspx