如何在Silverlight中加载xml文件并从中读取?

时间:2010-06-14 15:57:49

标签: c# xml silverlight

我不想从我已添加到我的项目的网站加载它我想要做的就是访问它并阅读它。任何人都可以帮忙!

2 个答案:

答案 0 :(得分:2)

我在Mike Snow找到了一篇描述一种方法的博客文章。代码有点长,完整引用,但这是相关部分:

StringReader stream = new StringReader(e.Result);
XmlReader reader = XmlReader.Create(stream);

while (reader.Read())
{
    // Do stuff
}

使用以下代码下载xml文件:

Uri url = new Uri("MapImages.xml", UriKind.Relative);
WebClient client = new WebClient();
client.DownloadStringCompleted +=
        new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
client.DownloadStringAsync(url);

DownloadStringAsync MSDN页面:

  

下载资源后,此方法使用Encoding属性中指定的编码将资源转换为String。下载资源时,此方法不会阻止调用线程。要在等待服务器响应时下载资源和块,请使用DownloadString方法。下载完成后,将引发DownloadStringCompleted事件。您的应用程序必须处理此事件才能收到通知。下载的字符串在Result属性中可用。

因此,它将文件下载到临时Internet文件夹(或缓存取决于浏览器),然后将文件作为字符串传递给事件处理程序,您可以使用{{1}将其读取}}

答案 1 :(得分:1)

如果要在项目中读取文件XML,请执行以下操作:

XDocument doc1 = XDocument.Load("file.xml");
        var filteredData = from c in doc1.Descendants("Row")
                           select new
                           {
                               //element assignment like:
                               Name = c.Element("Name");
                           };

查询返回一个IEnumereble对象...

编辑:问题是陈旧的,但回复总是对其他人有用