谁知道如何将数据存储到Windows Mobile 7.5中的txt文件?

时间:2012-02-16 04:57:15

标签: c# silverlight windows-phone-7 store

我只找到在Isolatedstorage中存储数据的方法,但我在移动设备中找不到该文件。据说移动设备关闭时文件不存在。我只找到了在移动设备中存储图片的方法,但这是通过微软提供的API实现的。我找不到其他方法来存储我的手机中的txt文件。紧急!请帮忙!

1 个答案:

答案 0 :(得分:0)

您必须打开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

希望这会有所帮助。