我有一个包含 xml 文件的 zip 文件,我正在将此 xml 文件加载到 xml 文档中,而无需提取文件。这是通过流完成的。这样做之后,我正在修改一些节点的内部文本。问题是我在尝试保存流后遇到了前面提到的异常,这是代码:
(我在这里使用DotNetZip)
ZipFile zipFile = ZipFile.Read(zipPath); // the path is my desktop
foreach (ZipEntry entry in zipFile)
{
if (entry.FileName == "myXML.xml")
{
//creating the stream and loading the xml doc from the zip file:
Stream stream = zipFile[entry.FileName].OpenReader();
XmlReader xReader = XmlReader.Create(stream);
XmlDocument xDoc = new XmlDocument();
xDoc.Load(xReader);
//changing the inner text of the doc nodes:
xDoc.DocumentElement.SelectSingleNode("Account/Name").InnerText = "VeXe";
xDoc.DocumentElement.SelectSingleNode("Account/Money").InnerText = "Million$";
xDoc.Save(stream); // here's where I got the exception.
break;
}
}
我不是专业编码人员,但xDoc.Save(stream);
我没有注意到它也可以将 aXmlWriter
作为参数,所以我尝试在实例化 XmlReader 后立即创建 XmlWriter 的实例。
我尝试这样做:xDoc.Save(XmlWriter)
我得到了一个异常说比如:“读后不能写”
如何成功保存 xDoc?
添加: 我有一个想法将xml文件保存在其他地方,比如临时文件夹或其他东西,然后在zip中添加保存的文件覆盖旧文件,然后删除临时文件中的xml文件..但这不是我的想,我想直接处理zip文件,进出,没有第三方。