如何使用C#将XML URL内容保存到文本文件中

时间:2013-09-13 23:16:57

标签: c# xml

我想使用C#将Xml Url内容保存到文本文件中 我试过这段代码

System.Xml.XmlTextReader _XmlTextReader = new System.Xml.XmlTextReader("http://www.w3schools.com/php/links.xml");
        string_xmlContent =_XmlTextReader.Readinnerxml();
        System.IO.File.WriteAllText("C:\users\vaio\desktop\new folder");

但它没有用**

PS:对不起我的英语不太好

1 个答案:

答案 0 :(得分:0)

试试这个。

XmlDocument document = new XmlDocument();
document.Load("http://www.w3schools.com/php/links.xml");

File.WriteAllText("c:\\links.xml", document.InnerXml);