3
誰能告訴我如何讀取和寫入字節數組到WP7中的隔離存儲文件?如何讀/寫字節[]到隔離存儲
誰能告訴我如何讀取和寫入字節數組到WP7中的隔離存儲文件?如何讀/寫字節[]到隔離存儲
IsolatedStorageFileSystem
有寫字節數組的方法:
public override void Write(byte[] buffer, int offset, int count);
可以使用如下:
byte[] myByteArray = ...
using (var store = IsolatedStorageFile.GetUserStoreForApplication())
using (var stream = new IsolatedStorageFileStream("filename.txt",
FileMode.Create, FileAccess.Write, store))
{
stream.Write(myByteArray, 0, myByteArray.Length);
}
我可以使用IsolatedStorageFile在Windows文件中的窗體應用程序寫入和讀取它後來? – Kiquenet