1、 TXT
文本内容较小:
将txt读取返回为 string
string str1 = File.ReadAllText(@"c:\temp\a.txt");
将txt读取返回为 string[ ]
string[] strs1 = File.ReadAllLines(@"c:\temp\a.txt");
文本较多:采用流的方式Stream
//采用流的方式读,适合较多文本内容 StreamReader sR1 = new StreamReader(filesPath);//先实例化StreamReader类 json = sR1.ReadToEnd(); //文本内容 全部读完 sR1.Close();
2、EXCEL
参考:
https://www.cnblogs.com/eniac12/p/4398310.html
标签:文件,文本,string,C#,sR1,txt,StreamReader,读取 From: https://www.cnblogs.com/yu-beng/p/17568674.html