码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2017-02-23 18:31:15      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:设置   cto   creat   创建   pre   tin   http   filename   return   

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# 下载并保存文件在程序目录

标签:设置   cto   creat   创建   pre   tin   http   filename   return   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!