近来研究一下,流操作.
把近来的心得总结一下.
希望能对要了解流操作的人有所帮助...
呵呵....LEO-QH胖胖
//
1.打开本地文件打成流
FileStream fs = File.OpenRead(path);
MemoryStream ms = new MemoryStream();
int bdata;
while ((bdata = fs.ReadByte()) != - 1 )
FileStream fs = File.OpenRead(path);
MemoryStream ms = new MemoryStream();
int bdata;
while ((bdata = fs.ReadByte()) != - 1 )