码迷,mamicode.com
首页 > Windows程序 > 详细

C#文件流的读写

时间:2019-01-01 16:09:17      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:读写   file   写文件   路径   ogr   bytes   ecs   ring   pen   

1.文件流写入的一般步骤

  1.定义一个写文件流

  2.定义一个要写入的字符串

  3.完成字符串转byte数组

  4.把字节数组写入指定路径的文件

  5.关闭文件流

2.文件流读入的一般步骤

  1.定义一个读文件流

  2.开辟一块足够大的字节数组内存空间

  3.把指定文件的内容读入字节数组

  4.完成字节数组转字符串操作

  5.关闭文件流

具体代码如下:

 1 using System;
 2 using System.IO;
 3 using System.Text;
 4 namespace LearnFileStream
 5 {
 6     class Program
 7     {
 8         string path = @"E:\AdvanceCSharpProject\LearnCSharp\LearnFileStream.txt";
 9 
10         private void TestWrite()
11         {
12             //定义写文件流
13             FileStream fsw = new FileStream(path, FileMode.OpenOrCreate);
14             //写入的内容
15             string inputStr = "Learn Advanced C Sharp";
16             //字符串转byte[]
17             byte[] writeBytes = Encoding.UTF8.GetBytes(inputStr);
18             //写入
19             fsw.Write(writeBytes, 0, writeBytes.Length);
20             //关闭文件流
21             fsw.Close();
22         }
23 
24         private void TestRead()
25         {
26             //定义读文件流
27             FileStream fsr = new FileStream(path, FileMode.Open);
28             //开辟内存区域 1024 * 1024 bytes
29             byte[] readBytes = new byte[1024 * 1024];
30             //开始读数据
31            int count = fsr.Read(readBytes, 0, readBytes.Length);
32             //byte[]转字符串
33             string readStr = Encoding.UTF8.GetString(readBytes, 0, count);
34             //关闭文件流
35             fsr.Close();
36             //显示文件内容
37             Console.WriteLine(readStr);
38         }
39         static void Main(string[] args)
40         {
41             new Program().TestWrite();
42             new Program().TestRead();
43         }
44     }
45 }

 

C#文件流的读写

标签:读写   file   写文件   路径   ogr   bytes   ecs   ring   pen   

原文地址:https://www.cnblogs.com/blackteeth/p/10204877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!