我正在使用最新版本的 DotNetZip,并且我有一个包含 5 个 XML 的 zip 文件。
我想打开 zip,读取 XML 文件并使用 XML 的值设置一个字符串。
我怎样才能做到这一点?
代码:
//thats my old way of doing it.But I needed the path, now I want to read from the memory
string xfile = System.IO.File.ReadAllText(strNewFilePath, System.Text.Encoding.Default);
using (ZipFile zip = ZipFile.Read(this.uplZip.PostedFile.InputStream))
{
foreach (ZipEntry theEntry in zip)
{
//What should I use here, Extract ?
}
}
谢谢