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

C#中FileStream

时间:2018-04-12 18:02:59      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:字节   code   sys   osi   write   original   art   other   app   

1.写文件

FileStream fsWrite = new FileStream(@"E:/新建文件夹/OriginalData.dat", FileMode.OpenOrCreate, FileAccess.Write);

string msg = "字符串字符串字符串";

 byte[] myByte = System.Text.Encoding.UTF8.GetBytes(msg);

fsWrite.Write(myByte , 0, myByte .Length);

2.读文件

 1          StringBuilder sb = new StringBuilder();
 2             //读取数据文件
 3             using (FileStream fsRead = new FileStream(@"E:/新建文件夹/OriginalData.dat", FileMode.OpenOrCreate, FileAccess.Read))
 4             {
 5                 long otherLength = fsRead.Length;//还没读取的文件长度
 6                 byte[] buffer = new byte[128];//接收文件的字节数组
 7                 int num = 0;//实际读取的字节数
 8                 int readStartPosit = 0;//开始读取的位置
 9                 while (readStartPosit < 256)
10                 {
11                     fsRead.Position = readStartPosit;//设置文件读取的位置
12                     if (otherLength < buffer.Length)//当剩余文件小于最大读取时
13                     {
14                       num=  fsRead.Read(buffer, readStartPosit, Convert.ToInt32(otherLength));
15                     }
16                     else
17                     {
18                       num=  fsRead.Read(buffer, 0, buffer.Length);
19                     }
20                     if (num <= 0) break;
21 
22                     otherLength -= num;
23                     readStartPosit += num;
24                     sb.Append(Encoding.UTF8.GetString(buffer));
25                 }
26             }
27             Txt1 = sb.ToString();

 

C#中FileStream

标签:字节   code   sys   osi   write   original   art   other   app   

原文地址:https://www.cnblogs.com/LY-HeroesRebor/p/8809004.html

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