silverlight – 在文件打开时抛出IsolatedStorageFileStream异常?

silverlight – 在文件打开时抛出IsolatedStorageFileStream异常?,第1张

概述当我尝试在WP7应用程序中打开文件时: IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication();IsolatedStorageFileStream nameXmlFile = new IsolatedStorageFileStream("Names.xml", System.IO.FileMode.Op 当我尝试在WP7应用程序中打开文件时:

IsolatedStoragefile isf = IsolatedStoragefile.GetUserStoreForApplication();IsolatedStoragefileStream nameXmlfile = new IsolatedStoragefileStream("names.xml",System.IO.fileMode.Open,isf);

我收到以下错误:

Operation not permitted on IsolatedStoragefileStream.

我不确定为什么它没有打开,因为我在我的应用程序的其他地方使用了确切的代码,它工作正常.
关于为什么会发生这种情况的任何线索?

编辑

我使用以下代码将文件添加到App.xaml.cs Application_Launching事件中的独立存储:

IsolatedStoragefile isf = IsolatedStoragefile.GetUserStoreForApplication();IsolatedStoragefileStream FeedXmlfile = new IsolatedStoragefileStream("names.xml",System.IO.fileMode.Create,isf);
解决方法 使用IsolatedStoragefileStream构造函数的一个问题是生成的异常信息有限.替代的Openfile方法有一组更丰富的例外.

作为一般的经验法则,如果API允许您使用构造函数或方法执行相同的 *** 作,请使用该方法.在这种情况下,请尝试使用此代码: –

IsolatedStoragefile isf = IsolatedStoragefile.GetUserStoreForApplication();IsolatedStoragefileStream nameXmlfile = isf.Openfile("names.xml",System.IO.fileMode.Open);

如果失败,您将至少缩小潜在原因.

这看起来很明显但是在您创建的代码中,您实际上已经写入并关闭了您创建的文件?

总结

以上是内存溢出为你收集整理的silverlight – 在文件打开时抛出IsolatedStorageFileStream异常?全部内容,希望文章能够帮你解决silverlight – 在文件打开时抛出IsolatedStorageFileStream异常?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1002035.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存