WP8数据存储--独立存储文件
摘要:
主要的三个步骤1.调用手机的独立存储 例如:IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication()2.创建独立存储文件流 例如:IsolatedStorageFileStream location = new IsolatedStorageFileStream(nateText.Text + ".item", System.IO.FileMode.Create, storage);3.读写该文件流 例如:将独立存储文件流转化为可写流 System.IO.StreamWrit 阅读全文
posted @ 2013-09-25 16:28 MyBeN 阅读(1343) 评论(0) 推荐(1) 编辑