HttpWebRequest &&FileStream分块读取和写入文件&WebClient

时间:2025-03-27 10:45:54

//HttpWebRequest  下载文件

private void DownloadFile(string filePath)
          {
              string[] temp = filePath.Split(new string[] { @"/" }, );
              string fileName = temp[ - 1];
              string PhysicalFilePath = Request.PhysicalApplicationPath + ["UploadFilePath"];
              if (!(PhysicalFilePath))
                  (PhysicalFilePath);
              if (!(PhysicalFilePath + "\\" + fileName))
              {
                  Uri downUri = new Uri(@"http://192.168.1.1" + filePath);

                  HttpWebRequest hwr = (HttpWebRequest)(downUri);

   //设置接收对象的范围为0-10000000字节。
                      (0, 10000000);
                  using (Stream stream = ().GetResponseStream())
                  {                   
                      //文件流,流信息读到文件流中,读完关闭
                      using (FileStream fs = (PhysicalFilePath + "\\" + fileName))
                      {
                          //建立字节组,并设置它的大小是多少字节


                          byte[] bytes = new byte[10240];
                          int n = 1;
                          while (n > 0)
                          {
                              //一次从流中读多少字节,并把值赋给N,当读完后,N为0,并退出循环
                              n = (bytes, 0, 10240);
                              (bytes, 0, n); //将指定字节的流信息写入文件流中
                          }
                      }
                  }
              }
          }

static public void HttpRemoteDownload2()
        {
            string URLAddress = "http://192.168.1.106/";
            HttpWebRequest request = (HttpWebRequest)(URLAddress);
            = "GET";
            HttpWebResponse response = (HttpWebResponse)();
            Stream responseStream = ();
            List<byte> btlst = new List<byte>();
            int b = ();
            while (b > -1)
            {
                ((byte)b);
                b = ();
            }

            byte[] bts = ();

            ("", bts); // 保存文件
        }

//FileStream分块读取和写入文件

 static void Main(string[] args)

        {

            FileStream fsOutput = new FileStream("D:\\", | );
            FileStream fs;
            //获得文件所在路径
            string filePath = "C:\\";

            //打开文件
            try
            {
                fs = new FileStream(filePath, );
            }
            catch (Exception)
            {
                throw;
            }
            int chunkSize = 100;
            //尚未读取的文件内容长度
            long left = ;
            //存储读取结果
            byte[] bytes = new byte[chunkSize];
           
            //读取位置
            int start = 0;
            //实际返回结果长度
            int num = 0;
            //当文件未读取长度大于0时,不断进行读取
            while (left > 0)
            {
                = start;
                num = 0;
                if (left < chunkSize)
                {
                    bytes = new byte[left];
                    num = (bytes, 0, Convert.ToInt32(left));
                }
                else
                {
                    num = (bytes, 0, chunkSize);
                }
                
               
                    //开始写入
                    (bytes, 0, );
                    //清空缓冲区
                    ();                 
                               
                (bytes, 0, );
                if (num == 0)
                    break;
                start += num;
                left -= num;
                (Encoding.(bytes));
            }
          
            ();
            ();


            ();

        }

//WebClient

static  public void HttpRemoteDownload()
        {
            string URLAddress = "http://192.168.1.106/";
            WebClient client = new WebClient();
            Stream str = (URLAddress);
            StreamReader reader = new StreamReader(str);
            byte[] fileData = new byte[1000000];
            int fileDataLength = (int);
            int startIndex = 0;

            while (fileDataLength > 0)
            {

                int m = (fileData, startIndex, fileDataLength);
                if (m == 0)
                    break;


                startIndex += m;
                fileDataLength -= m;
            }

            ();
            ();
            string receivePath = @"C:\";
            string path = receivePath + (URLAddress);
            FileStream fstr = new FileStream(path, , );
            (fileData, 0, startIndex);
            ();
            ();
        }