C# StreamReader一行一行的读取文件内容,请说的详细点,谢谢!

2025-03-28 19:28:56
推荐回答(2个)
回答1:

StreamReader sr = new StreamReader() ;有个 sr.ReadLine();就是一行一行的读取 内容的 。 sr.ReadEnd貌似是这个方法 显示是否 到最后了
于是 你可以用 while(sr.ReadEnd)
{
sr.ReadLine();
}
这样就能把一个文件读完了

回答2:

http://msdn.microsoft.com/zh-cn/library/system.io.streamreader(VS.80).aspx下面的代码示例使用 StreamReader 对象从文件中读取文本。

VBC#C++F#JScript
复制using System;
using System.IO;

class Test
{
public static void Main()
{
try
{
// Create an instance of StreamReader to read from a file.
// The using statement also closes the StreamReader.
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line;
// Read and display lines from the file until the end of
// the file is reached.
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line);
}
}
}
catch (Exception e)
{
// Let the user know what went wrong.
Console.WriteLine("The file could not be read:");
Console.WriteLine(e.Message);
}
}
}