5
我使用的是最新版本的DotNetZip,並且我有一個帶有5個XML的zip文件。
我想打開zip文件,讀取XML文件,並使用XML的值設置String。
我該怎麼做?如何使用DotNetZip從zip中提取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 ?
}
}
由於
感謝卡森,爲我的作品。我正在使用Extract,但沒有與流,ty再次。 – Bruno
我錯過了ms.Position = 0;非常感謝:) –