首页 > Windows开发 > 详细

c# 下载并保存文件在程序目录

时间:2017-02-23 18:31:15      阅读:192      评论:0      收藏:0      [点我收藏+]
public void HttpDownloadFile(string url)
        {
            string strFileName = url.Substring(url.LastIndexOf("/")+1);
            // 设置参数
            HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
            //发送请求并获取相应回应数据
            HttpWebResponse response = request.GetResponse() as HttpWebResponse;
            //直到request.GetResponse()程序才开始向目标网页发送Post请求
            Stream responseStream = response.GetResponseStream();
            //创建本地文件写入流
            //string uploadPath = "/DownFile"; 
            string uploadPath = Environment.CurrentDirectory;
            uploadPath = uploadPath.Substring(0, uploadPath.IndexOf("bin")) + "DownFile\\" + strFileName;
            Stream stream = new FileStream(uploadPath, FileMode.Create);
            byte[] bArr = new byte[stream.Length];
            int size = responseStream.Read(bArr, 0, (int)bArr.Length);
            while (size > 0)
            {
                stream.Write(bArr, 0, size);
                size = responseStream.Read(bArr, 0, (int)bArr.Length);
            }
            stream.Close();
            responseStream.Close();
   //return path;
        }

 

c# 下载并保存文件在程序目录

原文:http://www.cnblogs.com/ghelement/p/6434445.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!