1. 首页
  2. 数据库
  3. 其它
  4. C#读写txt文件多种方法实例代码

C#读写txt文件多种方法实例代码

上传者: 2021-01-04 03:30:05上传 PDF文件 38KB 热度 9次
1.添加命名空间 代码如下:System.IO;System.Text; 2.文件的读取 (1).使用FileStream类进行文件的读取,并将它转换成char数组,然后输出。 代码如下:byte[] byData = new byte[100]; char[] charData = new char[1000]; public void Read() { try { FileStream file = new FileStream(“E:\\test.txt”, FileMo
用户评论