如何逐行阅读StreamReader文本

时间:2016-05-08 19:14:22

标签: c# .net text streamreader

我托管了一个文本文件,这个文件有一个有组织的字符串,如下所示:

  • 第一行
  • 第二行
  • 第三行
  • 第四行
  • 第六行
  • 第七行
  • ....................

我通过以下功能从此文件中获取所有内容:

        private static List<string> lines;

        private static string DownloadLines(string hostUrl)
        {
            var strContent = "";

            var webRequest = WebRequest.Create(hostUrl);

            using (var response = webRequest.GetResponse())
            using (var content = response.GetResponseStream())
            using (var reader = new StreamReader(content))
            {
                strContent = reader.ReadToEnd();
            }

             lines = new List<string>();

             lines.Add(strContent);

            return strContent;

        }


// Button_click

        DownloadLines("http://address.com/folder/file.txt");

            for (int i = 0; i < lines.Count; i++)
            {

                lineAux = lines[0].ToString();

                break;

            }

            Console.WriteLine(lineAux);

然后,我如何访问此方法返回的这个大型有组织字符串中的第一个索引,如文本?

1 个答案:

答案 0 :(得分:12)

您可以通过这种方式逐行阅读文本文件

private static List<string> DownloadLines(string hostUrl)
    {

    List<string> strContent = new List<string>();

    var webRequest = WebRequest.Create(hostUrl);

    using (var response = webRequest.GetResponse())
    using (var content = response.GetResponseStream())
    using (var reader = new StreamReader(content))
        {
            while (!reader.EndOfStream)
            {
                strContent.Add(reader.ReadLine());
            }
        }

    return strContent;

}

从方法返回此列表后,您可以使用列表索引

访问文本行