文件读取StreamRead和StreamWriter类
StreamReader 用于从字节流中读取字符StreamWriter 用于向一个流中写入字符
使用
读取
cs
// using 使用,语句可以省去关闭StreamReader读写流
using (StreamReader sr = new StreamReader(@"1.txt", Encoding.UTF8))
{
string lines;
// sr.ReadLine() 读取数据 如果读到文件的末尾时候,不再有数据,该方法的返回值为null
while ((lines = sr.ReadLine()) != null)
{
Console.WriteLine(lines);
}
}
写入
cs
using(StreamWriter sw = new StreamWriter(@"2.txt"))
{
sw.WriteLine("迪迦奥特曼会飞");
}