本帖最后由 u010209195 于 2014-7-29 18:04 编辑
- FileStream fs = new FileStream("1.txt", FileMode.Open, FileAccess.Read);
- int fcount = 0;
- byte[] bt=new byte[1024];
- while ((fcount = fs.Read(bt, 0, bt.Length)) > 0)
- {
-
- }
- StreamReader sr = new StreamReader("1.txt");
- int scount = -1;
- char[] cr = new char[1024];
- while ((scount = sr.Read(cr,0,cr.Length))>0)
- {
-
- }
复制代码
对于读取文本文件FileStream,StreamReader有什么区别,那个比较好些?
还有Filestream StreamReader的区别在哪里?有什么联系?
我也百度了,看的不是很明白,各位能不能用比较简单明了的方式帮我解惑:o |