真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C#中怎么實(shí)現(xiàn)文件流讀寫操作

這篇文章給大家介紹C#中怎么實(shí)現(xiàn)文件流讀寫操作,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、微信小程序定制開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了英吉沙免費(fèi)建站歡迎大家使用!

var fs_in = System.IO.File.OpenRead(@"C:\3.0.6.apk");
var fs_out = System.IO.File.OpenWrite(@"C:\3.0.6.apk.copy");
byte[] buffer = new byte[1024];
while (fs_in.Read(buffer,0,buffer.Length)>0)
{
 fs_out.Write(buffer, 0, buffer.Length);
}
Console.WriteLine("復(fù)制完成");

所以一眼就能看出這個方法簡直有天大的 bug ,假設(shè)文件長度不為 1024 的倍數(shù),永遠(yuǎn)會在文件尾部多補(bǔ)充上一段的冗余數(shù)據(jù)。

C#中怎么實(shí)現(xiàn)文件流讀寫操作

這里整整多出了 878 字節(jié)的數(shù)據(jù),導(dǎo)致整個文件都不對了,明顯是基礎(chǔ)知識都沒學(xué)好。

增加一個變量保存實(shí)際讀取到的字節(jié)數(shù),改為如下:

var fs_in = System.IO.File.OpenRead(@"C:\迅雷下載\3.0.6.apk");
var fs_out = System.IO.File.OpenWrite(@"C:\迅雷下載\3.0.6.apk.copy");
byte[] buffer = new byte[1024];
int readBytes = 0;
while ((readBytes= fs_in.Read(buffer, 0, buffer.Length)) >0)
{
 fs_out.Write(buffer, 0, readBytes);
}
Console.WriteLine("復(fù)制完成");

對于處理大型文件,一般都有進(jìn)度指示,比如處理壓縮了百分多少之類的,這里我們也可以加上,比如專門寫一個方法用于文件讀取并返回 byte[] 和百分比。

static void ReadFile(string filename,int bufferLength, Action callback)
{
 if (!System.IO.File.Exists(filename)) return;
 if (callback == null) return;
 System.IO.FileInfo finfo = new System.IO.FileInfo(filename);
 long fileLength = finfo.Length;
 long totalReadBytes = 0;
 var fs_in = System.IO.File.OpenRead(filename);
 byte[] buffer = new byte[bufferLength];
 int readBytes = 0;
 while ((readBytes = fs_in.Read(buffer, 0, buffer.Length)) > 0)
 {
  byte[] data = new byte[readBytes];
  Array.Copy(buffer, data, readBytes);
  totalReadBytes += readBytes;
  int percent = (int)((totalReadBytes / (double)fileLength) * 100);
  callback(data, percent);
 }
}

調(diào)用就很簡單了:

static void Main(string[] args)
{
 string filename = @"C:\3.0.6.apk";
 var fs_in = System.IO.File.OpenRead(filename);
 long ttc = 0;
 ReadFile(filename, 1024, (byte[] data, int percent) => 
 {
  ttc += data.Length;
  Console.SetCursorPosition(0, 0);
  Console.Write(percent+"%");
 });
 Console.WriteLine("len:"+ttc);
 Console.ReadKey();
}

這是基于文件讀取的,稍微改一下就可以改成輸入流輸出流的,這里就不貼出來了。文件讀寫非常耗時,特別是大文件,IO 和 網(wǎng)絡(luò)請求都是 “重操作”,所以建議大家 IO 都放在單獨(dú)的線程去執(zhí)行。C# 中可以使用 Task、Thread、如果同時有多個線程需要執(zhí)行就用 ThreadPool 或 Task,Java 或 Android 中用 Thread 或線程池,以及非常流行的 RxJava 等等 ...

關(guān)于C#中怎么實(shí)現(xiàn)文件流讀寫操作就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


分享名稱:C#中怎么實(shí)現(xiàn)文件流讀寫操作
本文鏈接:http://weahome.cn/article/pghpic.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部