0

我遇到此错误:“IsolatedStorageFileStream 上不允许操作。” 我正在为电话 C# 使用 Visual Studio 2010 Express。

这是我的代码:

        public void LoadData()
        {
           string xmlUrl = "http://datastore.unm.edu/events/events.xml";

        using (IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication())
        {

            using (var isoFileStream = new IsolatedStorageFileStream(xmlUrl, FileMode.Open, FileAccess.ReadWrite, FileShare.Read, storage))
            {
                using (XmlReader xreader = XmlReader.Create(isoFileStream))
                {

                }

            }

        }
        }

谢谢您的帮助!非常感谢。

4

1 回答 1

0

如果你想从网上读取 xml,你应该使用 WebClient 类。WebClient 提供了向由 URI 标识的资源发送数据和从其接收数据的常用方法。

这是一个小例子

   private WebClient webClient;

    public Example()
    {
        webClient.DownloadStringCompleted += new DownloadStringCompletedEventHandler(DownloadStringCompleted);
        webClient.DownloadStringAsync(new Uri("http://datastore.unm.edu/events/events.xml", UriKind.Absolute));
    }

    private void DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
    {

        XElement Xmlparse = XElement.Parse(e.Result);


    }

如您所见,我们使用了在异步资源下载操作完成时发生的 DownloadStringCompletedHandler。

最后要解析 XML,您可以在此处使用 XElement 类更多信息

于 2013-10-20T01:54:18.797 回答