码迷,mamicode.com
首页 > Web开发 > 详细

从URL获取图片并保存到本地

时间:2018-01-15 12:33:34      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:ring   param   str   ado   local   get   bsp   down   .net   

     ///   <summary> 
        ///  HttpWebRequest Property
        ///   </summary> 
        ///   <param name="fileName">文件名称</param> 
        ///   <param name="url">图片地址</param> 
        ///   <param name="localPath">本地路径("D:\\imgdow")</param>       
        public static void DownloadOneFileByURL(string fileName, string url, string localPath)
        {
            Stream s = null;
            System.Net.HttpWebRequest request = null;
            System.Net.HttpWebResponse response = null;
            request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(url);
            request.Timeout = 5000; // 超时时间
            response = (System.Net.HttpWebResponse)request.GetResponse();
            s = response.GetResponseStream();
            var imgs = Image.FromStream(s);
            imgs.Save(localPath + $"/{fileName}.jpg");
            s.Close();
        }

 

从URL获取图片并保存到本地

标签:ring   param   str   ado   local   get   bsp   down   .net   

原文地址:https://www.cnblogs.com/sunqiang/p/8287472.html

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