下载文件到本地

Posted MR_CHW

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下载文件到本地相关的知识,希望对你有一定的参考价值。

        public void DownFile(string uRLAddress, string localPath, string filename)
        {
            WebClient client = new WebClient();
            Stream str = client.OpenRead(uRLAddress);
            StreamReader reader = new StreamReader(str);
            byte[] mbyte = new byte[1000000];
            int allmybyte = (int)mbyte.Length;
            int startmbyte = 0;

            while (allmybyte > 0)
            {

                int m = str.Read(mbyte, startmbyte, allmybyte);
                if (m == 0)
                {
                    break;
                }
                startmbyte += m;
                allmybyte -= m;
            }

            reader.Dispose();
            str.Dispose();

            //string paths = localPath + System.IO.Path.GetFileName(uRLAddress);
            string path = localPath + filename;
            FileStream fstr = new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write);
            fstr.Write(mbyte, 0, startmbyte);
            fstr.Flush();
            fstr.Close();
        }

  

以上是关于下载文件到本地的主要内容,如果未能解决你的问题,请参考以下文章

如何添加jcenter仓库 gradle依赖

Gradle 引入本地定制 jar 包

本地上传文件到服务器,从服务器下载文件到本地

使用 libtorrent 下载特定片段

github下载项目代码到本地,不能运行 本地改完代码 再上传

git 用命令下载代码到本地