C#实现HTTP请求文件下载,GET、POST请求的数据流…
2018-06-17 22:29:11来源:未知 阅读 ()
参考的地址:http://www.jb51.net/article/57068.htm
1 public string CopyFileByUrl(string url) 2 { 3 string name = url.Substring(url.LastIndexOf('/') + 1);//获取名字 4 string fileFolder = UploadConfigContext.UploadPath; 5 string filePath = Path.Combine(fileFolder, name);//存放地址就是本地的upload下的同名的文件 6 if (!Directory.Exists(fileFolder)) 7 Directory.CreateDirectory(fileFolder); 8 9 string returnPath = GetSimplePath(filePath);//需要返回的路径 10 if (File.Exists(filePath)) 11 {//如果已经存在,那么就不需要拷贝了,如果没有,那么就进行拷贝 12 return returnPath; 13 } 14 HttpWebRequest request = HttpWebRequest.Create(url) as HttpWebRequest; 15 request.Method = "GET"; 16 request.ProtocolVersion = new Version(1, 1); 17 HttpWebResponse response = request.GetResponse() as HttpWebResponse; 18 if (response.StatusCode == HttpStatusCode.NotFound) 19 { 20 return string.Empty;//找不到则直接返回null 21 } 22 // 转换为byte类型 23 System.IO.Stream stream = response.GetResponseStream(); 24 25 26 //创建本地文件写入流 27 Stream fs = new FileStream(filePath, FileMode.Create); 28 byte[] bArr = new byte[1024]; 29 int size = stream.Read(bArr, 0, (int)bArr.Length); 30 while (size > 0) 31 { 32 fs.Write(bArr, 0, size); 33 size = stream.Read(bArr, 0, (int)bArr.Length); 34 } 35 fs.Close(); 36 stream.Close(); 37 return returnPath; 38 }
public string GetSimplePath(string path) { //E:\Upload\cms\day_150813\1.jpg path = path.Replace(@"\", "/"); int pos = path.IndexOf("Upload"); if (pos != -1) { pos = pos - 1;//拿到前面那个/,这样为绝对路径,直接保存在整个项目下的upload文件夹下 return path.Substring(pos, path.Length - pos); } return ""; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:Oracle备份数据库
- python day2-爬虫实现github登录 2019-08-13
- python 之 前端开发(HTTP协议、head标签、img标签、a标签、 2019-08-13
- python爬虫常用库 2019-08-13
- python+selenium实现自动化百度搜索关键词 2019-07-24
- python + pyinstaller 实现将python程序打包成exe文件直接运 2019-07-24
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash