使用StreamReader

时间:2017-09-25 12:17:27

标签: c# .net streamreader

我正在线上阅读教程,在c#中逐行阅读一个简单的文本文件,但是我得到了这个错误,我无法解决这个问题。

这是我的简单代码:

StreamReader reader = new StreamReader("hello.txt");

但这给了我一个错误:

  

参数1:无法转换为' string'到' System.IO.Stream'

This article on msdn使用相同的代码并且在那里工作,我做错了什么?

2 个答案:

答案 0 :(得分:4)

如果您想以最简单的方式阅读文件

var path = "c:\\mypath\\to\\my\\file.txt";
var lines = File.ReadAllLines(path);

foreach (var line in lines)
{
    Console.WriteLine(line);
}

你也可以这样做:

var path = "c:\\mypath\\to\\my\\file.txt";
using (var reader = new StreamReader(path))
{
    while (!reader.EndOfStream)
    {
        Console.WriteLine(reader.ReadLine());
    }
}

答案 1 :(得分:0)

你可以这样做

int counter = 0;
string line;

// Read the file and display it line by line.
System.IO.StreamReader file = new System.IO.StreamReader("c:\\hello.txt");
 while((line = file.ReadLine()) != null)
{
     Console.WriteLine (line);
     counter++;
}

file.Close();