filestream read方法 循環讀取固定文件

一、循環讀取啊,byte[]能夠定義爲1024或者2049等等,不要超過int的maxvalue就能夠。
而後取出來操做完再去取。web

 

 1  FileStream stream = new FileStream(path);
 2  byte[] writeData = new byte[8192];
 3   // Use the ReadAllBytesFromStream to read the stream.
 4   while (true)
 5   {
 6        int size = stream.Read(writeData, 0, writeData.Length);
 7        if (size > 0)
 8        {
 9             //你操做數據的代碼
10       }
11        else
12        {
13             break;
14        }
15   }
16   stream.Close();

 

二、C# filestream.Read用在while循環有啥用?
FileStream fs = File.OpenRead("C:\\test.txt");
byte[] arr = new byte[100];
while (filestream.Read(arr, 0, arr.Length)>0)
{
Console.WriteLine(data.GetString(arr));
}
回答:循環讀取文件,每次只讀100個字節spa

 

string str = "C:\\test.txt";
                        if (!File.Exists(str))     ///檢測文件是否存在
                           {
                                       MessageBox.Show("文件不存在,請查看客戶端是否已經上傳數據!");
                           }
                       else
                          {   
                                 FileStream fop = File.OpenRead(str);
                                 byte[] arr = new byte[1000];
                                 while (fop.Read(arr, 0, arr.Length) > 0)    ///這個循環會將文件全部的內容都讀取出來
                                  {
                                  ClientSocket[1].Send(arr, 0, arr.Length,0);
                                  }
                                 fop.Close();
                             }
相關文章
相關標籤/搜索