2

我有一个文本文件,在遇到特定行后我需要在其中添加一些行。

我尝试过创建一个流对象,然后从文件中读取,直到获得搜索文本,然后通过设置其光标位置写入同一个流,但它不起作用。

有没有办法做到这一点?

4

2 回答 2

5

以下是在文件中间附加一些文本的方法:

var sb = new StringBuilder();
using (var sr = new StreamReader("inputFileName"))
{
    string line;
    do
    {
        line = sr.ReadLine();
        sb.AppendLine(line);
    } while (!line.Contains("<Sim Properties>"));

    sb.Append(myText);
    sb.Append(sr.ReadToEnd());
}

using (var sr = new StreamWriter("outputFileName"))
{
    sr.Write(sb.ToString());
}

这将myText 包含<Sim Properties>.

于 2013-01-12T06:13:01.987 回答
0

下面的代码示例演示了使用 WriteAllLines 方法将文本写入文件。在此示例中,如果文件不存在,则会创建一个文件,并向其中添加文本。

   using System;
    using System.IO;
    class Test
    {
        public static void Main()
        {
            string path = @"c:\temp\MyTest.txt";

            // This text is added only once to the file. 
            if (!File.Exists(path))
            {
                // Create a file to write to. 
                string[] createText = { "Hello", "And", "Welcome" };
                File.WriteAllLines(path, createText);
            }

            // This text is always added, making the file longer over time 
            // if it is not deleted. 
            string appendText = "This is extra text" + Environment.NewLine;
            File.AppendAllText(path, appendText);

            // Open the file to read from. 
            string[] readText = File.ReadAllLines(path);
            foreach (string s in readText)
            {
                Console.WriteLine(s);
            }
        }
    }
于 2013-01-12T05:52:57.757 回答