C#读取txt文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#读取txt文件相关的知识,希望对你有一定的参考价值。

public List<string> ReadtxtInfo()
{
FileStream fs = new FileStream(System.Web.HttpContext.Current.Server.MapPath("/") + @"/AllowList.txt", FileMode.Open);

StreamReader m_streamReader = new StreamReader(fs);
m_streamReader.BaseStream.Seek(0, SeekOrigin.Begin);
List<string> Arrar1 = new List<string>();
string strLine = m_streamReader.ReadLine();
do
{
string[] split = strLine.Split(‘=‘);
string a = split[1];
Arrar1.Add(a);
strLine = m_streamReader.ReadLine();
} while (strLine != null && strLine != "");

m_streamReader.Close();
m_streamReader.Dispose();
fs.Close();
fs.Dispose();
return Arrar1;

}

以上是关于C#读取txt文件的主要内容,如果未能解决你的问题,请参考以下文章

c#中怎么读取txt文件的最后几行

C# 读取txt配置文件,并且可以更新配置文件

怎样用C#读取TXT文件内容并修改

C# 读取txt文件生成Word文档

WPF C#怎么批量读取和创建文件(类似txt文件)

C# 怎么在定时器中读取TXT文件