谁知道如何在 windows mobile 7.5 中将数据存储到 txt 文件中?
我只找到了将数据存储在独立存储中的方法,但我在手机中找不到该文件。据说手机关机后该文件将不存在。我只找到了在手机中存储图片的方法,但这是通过微软提供的API实现的。我找不到其他方法在我的手机中存储 txt 文件。紧急情况!请帮忙!
I only find the way to store data in isolatedstorage but I cannot find the file in my mobile. It is said the file will not exist when mobile is off. And I only find the way to store picture in mobile but this is achieved by API provided by microsoft. I cannot find other method to store txt file in my mobile. Emergency! Help, Please!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须打开一个IsolatedStorageFileStream 并声明您的文本文件。这很容易做到。检查此链接: http://msdn.microsoft.com/en-us/library/system.io.isolatedstorage.isolatedstoragefile.createfile(v=vs.95).aspx
这里您可以了解有关isolatedStorage中文件的更多信息:
http://msdn。 microsoft.com/en-us/library/system.io.isolatedstorage.isolatedstoragefile(v=vs.95).aspx
希望这有帮助。
You have to open an IsolatedStorageFileStream and declare your text file. This can be done easily. Check this link: http://msdn.microsoft.com/en-us/library/system.io.isolatedstorage.isolatedstoragefile.createfile(v=vs.95).aspx
Here you can learn a bit more about files in IsolatedStorage:
http://msdn.microsoft.com/en-us/library/system.io.isolatedstorage.isolatedstoragefile(v=vs.95).aspx
hope this helps.