2

我正在开发一个 C# 应用程序,我需要从文本文件中读取一行并返回到第一行。

由于文件大小可能太大,我无法将其复制到数组中。

我试过这段代码

StreamReader str1 = new StreamReader(@"c:\file1.txt");
StreamReader str2 = new StreamReader(@"c:\file2.txt");

int a, b;
long pos1, pos2;

while (!str1.EndOfStream && !str2.EndOfStream)
{
    pos1 = str1.BaseStream.Position;
    pos2 = str2.BaseStream.Position;

    a = Int32.Parse(str1.ReadLine());
    b = Int32.Parse(str2.ReadLine());
    if (a <= b)
    {
        Console.WriteLine("File1 ---> " + a.ToString());
        str2.BaseStream.Seek(pos2, SeekOrigin.Begin);
    }
    else
    {
        Console.WriteLine("File2 ---> " + b.ToString());
        str1.BaseStream.Seek(pos1, SeekOrigin.Begin);
    }
}

str1.BaseStream.Position当我调试程序时,我发现str2.BaseStream.Position每个循环都相同,所以什么都不会改变。

有没有更好的办法?

谢谢

4

2 回答 2

8

您可以ReadLines用于大文件,它是延迟执行并且不会将整个文件加载到内存中,因此您可以操作IEnumerable以下类型的行:

var lines = File.ReadLines("path");

如果您使用的是旧 .NET 版本,以下是如何ReadLines自己构建:

    public IEnumerable<string> ReadLine(string path)
    {
        using (var streamReader = new StreamReader(path))
        {
            string line;
            while((line = streamReader.ReadLine()) != null)
            {
                yield return line;
            }
        }
    }
于 2013-03-27T10:05:39.757 回答
0

我更喜欢使用的另一种方式。

像这样创建一个函数:

string ReadLine( Stream sr,bool goToNext)
        {            
            if (sr.Position >= sr.Length)
                return string.Empty;            
            char readKey;
            StringBuilder strb = new StringBuilder();
            long position = sr.Position;
            do
            {
                readKey = (char)sr.ReadByte();
                strb.Append(readKey);
            }
            while (readKey != (char)ConsoleKey.Enter && sr.Position<sr.Length);
            if(!goToNext)
            sr.Position = position;
            return strb.ToString();        
        }

然后,为它的参数从文件创建一个流

Stream stream = File.Open("C:\\1.txt", FileMode.Open);
于 2013-04-01T10:56:46.330 回答