博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#读写TXT文件
阅读量:5312 次
发布时间:2019-06-14

本文共 947 字,大约阅读时间需要 3 分钟。

读TXT:

txtpath = System.AppDomain.CurrentDomain.BaseDirectory.ToString() + "test.txt";if (File.Exists(txtpath)){  StreamReader sr = new StreamReader(txtpath, Encoding.UTF8);  String line;  while ((line = sr.ReadLine()) != null)  {    this.textBox3.Text = line;  }  sr.Close();}

写TXT:

txtpath = System.AppDomain.CurrentDomain.BaseDirectory.ToString() + "test.txt";if (File.Exists(txtpath)){    FileStream stream2 = File.Open(txtpath, FileMode.OpenOrCreate, FileAccess.Write);    stream2.Seek(0, SeekOrigin.Begin);    stream2.SetLength(0); //清空txt文件    StreamWriter sw = new StreamWriter(stream2);    sw.Write(this.textBox4.Text.ToString());    sw.Flush();    sw.Close();    stream2.Close();}else{    FileStream fs = new FileStream(txtpath, FileMode.CreateNew);    StreamWriter sw = new StreamWriter(fs);    sw.Write(this.textBox4.Text.ToString());    sw.Flush();    sw.Close();    fs.Close();}

 

转载于:https://www.cnblogs.com/JTCLASSROOM/p/10972153.html

你可能感兴趣的文章
机器视觉:SSD Single Shot MultiBox Detector
查看>>
201521123044 《Java程序设计》第1周学习总结
查看>>
MIT Scheme 的基本使用
查看>>
在16aspx.com上下了一个简单商品房销售系统源码,怎么修改它的默认登录名和密码...
查看>>
c++回调函数
查看>>
linux下Rtree的安装
查看>>
【Java】 剑指offer(53-2) 0到n-1中缺失的数字
查看>>
Delphi中ListView类的用法
查看>>
多米诺骨牌
查看>>
Linq 学习(1) Group & Join--网摘
查看>>
asp.net 调用前台JS调用后台,后台掉前台JS
查看>>
苹果手表:大方向和谷歌一样,硬件分道扬镳
查看>>
Android面试收集录15 Android Bitmap压缩策略
查看>>
PHP魔术方法之__call与__callStatic方法
查看>>
ubuntu 安装后的配置
查看>>
【模板】对拍程序
查看>>
【转】redo与undo
查看>>
Django 模型层
查看>>
dedecms讲解-arc.listview.class.php分析,列表页展示
查看>>
安卓当中的线程和每秒刷一次
查看>>