1

我有带有文本框的表单,客户希望将此文本框中的所有更改存储到 zip 存档中。

我正在使用http://dotnetzip.codeplex.com 并且我有代码示例:

 using (ZipFile zip = new ZipFile())
  {
    zip.AddFile("text.txt");    
    zip.Save("Backup.zip");
  }

而且我不想每次都创建 temp text.txt 并将其压缩回去。我可以在 zip 文件中以 Stream 的形式访问 text.txt 并将文本保存在那里吗?

4

2 回答 2

1

DotNetZip 中有一个使用 Stream 方法的示例AddEntry

String zipToCreate = "Content.zip";
String fileNameInArchive = "Content-From-Stream.bin";
using (System.IO.Stream streamToRead = MyStreamOpener())
{
  using (ZipFile zip = new ZipFile())
  {
    ZipEntry entry= zip.AddEntry(fileNameInArchive, streamToRead);
    zip.Save(zipToCreate);  // the stream is read implicitly here
  }
}

使用 LinqPad 进行的小测试表明可以使用 MemoryStream 构建 zip 文件

void Main()
{
    UnicodeEncoding uniEncoding = new UnicodeEncoding();
    byte[] firstString = uniEncoding.GetBytes("This is the current contents of your TextBox");
    using(MemoryStream memStream = new MemoryStream(100))
    {
        memStream.Write(firstString, 0 , firstString.Length);
        // Reposition the stream at the beginning (otherwise an empty file will be created in the zip archive
        memStream.Seek(0, SeekOrigin.Begin);
        using (ZipFile zip = new ZipFile())
        {
            ZipEntry entry= zip.AddEntry("TextBoxData.txt", memStream);
            zip.Save(@"D:\temp\memzip.zip");  
        }
     }
}
于 2013-02-03T10:46:11.913 回答
0

还有另一种 DotNetZip 方法接受文件路径作为参数:

   zip.RemoveEntry(entry);
   zip.AddEntry(entry.FileName, text, ASCIIEncoding.Unicode);
于 2013-02-03T14:56:03.557 回答