如何将网址上的xml文件内容加载到字符串中?
例如,http://www.example.com/test.xml
处有一个xml文件我希望将xml的文本分配给字符串。 我怎么能用c#?
做到这一点感谢
答案 0 :(得分:4)
嗯,在我看来,它的XML是无关紧要的 - 只需将其下载为字符串:
WebClient client = new WebClient();
string text = client.DownloadString(url);
答案 1 :(得分:0)
获取xml文件的其他方法是通过HttpRequest,然后你可以解析XML,如果这是你需要的: previous question on the matter (with code sample)