c#问题:如何判断对一个文本文件的读取是否到达文件的末尾
展开全部
用循环去取,直到取不到文本。以下是示例:
using (StreamReader read = new StreamReader(@"c:\\a.txt", true))
{
do
{
newValue = read.ReadLine();
oldValue = newValue != null ? newValue : oldValue;
} while (newValue != null);
}
Console.WriteLine(oldValue);
}
using (StreamReader read = new StreamReader(@"c:\\a.txt", true))
{
do
{
newValue = read.ReadLine();
oldValue = newValue != null ? newValue : oldValue;
} while (newValue != null);
}
Console.WriteLine(oldValue);
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
FileStream fs = new FileStream("d:\\a.txt", FileMode.Open);//读文件
StreamReader m_streamReader = new StreamReader(fs);//写流
string strLine = m_streamReader.ReadLine();//读取一行文本
while (strLine != null && strLine != "")//一直读到读不到数据
{
strLine = m_streamReader.ReadLine();
}
追问
难道不是文字表达?还是代码?
追答
文字怕你不明白,文字的话就是一直读,读到没有数据了自然就是结尾
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询