WP7模拟器内存访问
我下载一个文件并将其保存在独立存储中。我想知道是否有办法查看模拟器内存中的文件。有什么方法吗?
I make the download of a file and save it with isolated storage.. I want to know if i have a way to see the file in the memory of the emulator.. theres some way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 IO 角度来看,模拟器中的隔离存储就像真实设备上的隔离存储一样。例如,要将文本文件保存到独立存储,请执行以下操作:
从独立存储中读取文本文件:
windowsphonegeek
Isolated storage in Emulator is just like an isolated storage on a real device from IO point of view. For example, to save a text file to an isolated storage call:
To read it from isolated storage:
Examples are provided by windowsphonegeek