如何在Winform和WPF中读取,写入和修改记事本(.txt)文件的内容?

时间:2013-07-10 15:37:37

标签: c# wpf winforms visual-studio

如何在Winform和WPF C#中读取,编写和修改记事本(.txt)文件的内容?

3 个答案:

答案 0 :(得分:1)

最简单的是StreamReader和StreamWriter:

    using (var writer = new StreamWriter(@"C:\blah\somefile.txt"))
    {
        writer.WriteLine("Hello!");
    }

    using (var reader = new StreamReader(@"C:\blah\somefile.txt"))
    {
        var line = reader.ReadLine();
    }

答案 1 :(得分:0)

您只需使用System.IO.File

class WriteTextFile
{
    static void Main()
    {

        // These examples assume a "C:\Users\Public\TestFolder" folder on your machine.
        // You can modify the path if necessary.

        // Example #1: Write an array of strings to a file.
        // Create a string array that consists of three lines.
        string[] lines = {"First line", "Second line", "Third line"};
        System.IO.File.WriteAllLines(@"C:\Users\Public\TestFolder\WriteLines.txt", lines);


        // Example #2: Write one string to a text file.
        string text = "A class is the most powerful data type in C#. Like structures, " +
                       "a class defines the data and behavior of the data type. ";
        System.IO.File.WriteAllText(@"C:\Users\Public\TestFolder\WriteText.txt", text);

        // Example #3: Write only some strings in an array to a file.
        using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"C:\Users\Public\TestFolder\WriteLines2.txt"))
        {
            foreach (string line in lines)
            {
                // If the line doesn't contain the word 'Second', write the line to the file.
                if (!line.Contains("Second"))
                {
                    file.WriteLine(line);
                }
            }
        }

        // Example #4: Append new text to an existing file
        using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"C:\Users\Public\TestFolder\WriteLines2.txt", true))
        {
            file.WriteLine("Fourth line");
        }  
    }
}
/* Output (to WriteLines.txt):
    First line
    Second line
    Third line

 Output (to WriteText.txt):
    A class is the most powerful data type in C#. Like structures, a class defines the data and behavior of the data type.

 Output to WriteLines2.txt after Example #3:
    First line
    Third line

 Output to WriteLines2.txt after Example #4:
    First line
    Third line
    Fourth line
 */

答案 2 :(得分:0)

这是一个非常基本的主题,已经有很多信息只有一个简单的搜索。作为一个例子,这是一个可以帮助你开始的SO问题:

How to both read and write a file in C#