IO 操作

IO 操作

五个步骤:

//【1】创建文件流
FileStream fs = new FileStream("E:\\muFile.txt", FileMode.Create);
//【2】创建写入器
StreamWriter sw = new StreamWriter(fs);
//【3】以流的方式写入数据
sw.Write(this.txtContent.Text.Trim());
//【4】关闭写入器
sw.Close();
//【5】关闭文件流
fs.Close();

IO 操作

IO 操作

对象序列化:

IO 操作

IO 操作

IO 操作

IO 操作

 

上一篇:C#FileStream读写大文件!代码可用!


下一篇:日志文件