如何在 Windows Phone xap 部署中包含 XML 数据?
我正在开发 WP7 应用程序。该应用程序将有几个 XML 文件。有些是可读写的,有一些是只读的。我在这里有什么选择?隔离存储?作为资源嵌入?
我还需要知道...
- 如何将 XML 加载到 XElements 中?
- 我如何从 XElement 保存到其中一个?
I'm working on a WP7 app. The app will have a couple of XML files. Some are read-write, a couple are read-only. What are my options here? IsolatedStorage? Embedding as resources?
I'll also need to know...
- How would I load the XML into XElements from either?
- How would I save from an XElement into either?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于写访问,您需要使用IsolatedStorage。您可以检查文件是否存在并从isolatedStorage加载它,否则从资源加载它。对于只读访问,您只需从资源加载它即可。将 xml 文件添加到您的项目中,检查“构建操作”是否为“内容”。
For write access you will need to use IsolatedStorage. You can check if the file exists and load it from IsolatedStorage otherwise load it from a resource. For read-only access you can just load it from a resource. Add the xml files to your project check Build Action is Content.
只是想一想,您想将“xap”作为包含所有文档的“exe”运行吗?如果是这样,您可以使用 Desklighter 工具 (http://blendables.com/labs/desklighter/ )。
Just for thought, do you wanna run the "xap" as an "exe" with all documents included? If so you can use the tool Desklighter (http://blendables.com/labs/desklighter/).