C#读几行的StreamReader?

时间:2019-01-31 20:15:40

标签: c# winforms richtextbox streamreader

我是新的C#和我有一个问题。我想有写入到一个RichTextBox的文件的内容,但StreamReader.ReadLine方法仅读取第一行。

我该如何解决?

2 个答案:

答案 0 :(得分:1)

可能做到这一点的最简单的方法是使用System.IO.File类的ReadAllText方法:

myRichTextBox.Text = File.ReadAllText(filePath);

本类有一堆的静态方法,总结了StreamReader类你,使阅读,并且很容易写入文件。

答案 1 :(得分:0)

有几种读取文件的方法。如果要使用StreamReader读取它并想要读取整个文件,则可以采用以下解决方案:

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);
        }
    }
}

您可以编辑发生控制台输出的部分。在这里,可以用

连接您的RichTextbox的字符串
text += Environment.NewLine + line;