日期:2014-05-20 浏览次数:20913 次
using (StreamReader sr = new StreamReader(path)) { while (sr.Peek() >= 0) { Console.WriteLine(sr.ReadLine()); } }
------解决方案--------------------
没有循环,只能取到第一行
------解决方案--------------------
while (sr.Peek() >= 0)
你贴出来的例子,你不仔细看看吗?
------解决方案--------------------
using (StreamReader sr = new StreamReader(s1))
{
while (!sr.EndOfStream)
{
Console.WriteLine(sr.ReadLine());
}
}
------解决方案--------------------
string path = @"D:\1.txt";//读取文件txt string sLine=string.Empty; using (StreamReader sr = new StreamReader(path))//遍历数据 { while (!sr.EndOfStream)//不是末尾数据 { sLine = sr.ReadLine(); if (sLine.Length < 1) { continue; } } } textBox1.Text = sLine.ToString();
------解决方案--------------------
阅读器初始时指向文件的开头,每执行一次ReadLine()读取一行,
BOF:开头
文件内容
EOF:结尾
开头、结尾没有任何行,可以认为阅读器初始时指向BOF。
------解决方案--------------------
引用百度百科:
Before Of File
Before of File,在电脑的术语缩写通常为 BOF,在作业系统决定资料源无更多的资料可读取。资料源通常称为档案或串流。 bof 用于指在第一条记录的前面,当记录集为空是,bof和eof都为true。
------解决方案--------------------
循环读取文件内容呢
------解决方案--------------------