C#读取txt文件
程序员文章站
2024-03-15 13:57:35
...
继上一篇文章写到解压文件,将一个txt文件手动压缩成.rar文件,后用程序解压,现在再写一个程序将.txt文件内的内容读出来。
学习参考网址:
https://www.cnblogs.com/akwwl/p/3240813.html
读出.txt每一行的信息
代码:
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ReadText
{
class Program
{
static void Main(string[] args)
{
StreamReader sr = new StreamReader("F:\\TestUnZip\\testUnzip.txt", Encoding.Default);
String line;
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line.ToString());
}
Console.ReadLine();
}
}
}
测试结果: