10

我有一个方法中使用的 xmlwriter 对象。我想把它转储到一个文件中来阅读它。有没有一种简单的方法可以做到这一点?

谢谢

4

2 回答 2

11

使用此代码

        // Create the XmlDocument.
        XmlDocument doc = new XmlDocument();
        doc.LoadXml("<item><name>wrench</name></item>");

        // Add a price element.
        XmlElement newElem = doc.CreateElement("price");
        newElem.InnerText = "10.95";
        doc.DocumentElement.AppendChild(newElem);

        // Save the document to a file and auto-indent the output.
        XmlTextWriter writer = new XmlTextWriter(@"C:\data.xml", null);
        writer.Formatting = Formatting.Indented;
        doc.Save(writer);

在 MSDN 上找到:http: //msdn.microsoft.com/en-us/library/z2w98a50.aspx

于 2013-03-07T16:31:07.897 回答
2

一种可能性是将 XmlWriter 设置为输出到文本文件:

using (var writer = XmlWriter.Create("dump.xml"))
{
    ...
}
于 2013-03-07T16:31:33.430 回答