C#实现批量下载图片到本地示例代码
时间:2020-10-10 22:21:42|栏目:.NET代码|点击: 次
一、概述
批量下载图片是我们在日常开发中经常会遇到的一个需求,这不,最近工作中就需要批量下载图片到本地,先是通过Excel拼接生成了所有链接地址,然后想到的是通过下载软件来批量下载。可是一想到又要花时间去查找、安装、研究软件,不如自己写个来的快。
以下是使用C#开发的控制台程序代码,通过循环读取文本文件中每一行地址字符串,执行下载并保存到本地文件夹中。
下面话不多说了,来一起看看详细的介绍吧
二、C#实例代码
//using System; //using System.Net; //using System.Text; //using System.IO; //-------------------------------------------- static void Main(string[] args) { //StreamReader读取 int count = 0; using (Stream readerStream = new FileStream(@"d:\list.txt", FileMode.Open)) using (StreamReader reader = new StreamReader(readerStream, Encoding.UTF8)) using (WebClient client = new WebClient()) { string line; while ((line = reader.ReadLine()) != null) { count++; Console.WriteLine(line + " " + count); Uri uri = new Uri(line); if (uri!=null) { string filename = Path.GetFileName(uri.LocalPath); client.DownloadFile(uri, @"c:\pictures\"+filename); Console.WriteLine("文件:"+filename+" 下载成功!" + " 计数:"+ count); } else { Console.WriteLine("路径:" + line + " 不是下载地址!失败序号:"+count ); } } } Console.WriteLine("下载完成!"); Console.ReadKey(); }
三、参考文章
How to download image from url
总结
上一篇:C#图片查看器实现方法
栏 目:.NET代码
下一篇:asp.net uploadify实现多附件上传功能
本文标题:C#实现批量下载图片到本地示例代码
本文地址:http://www.codeinn.net/misctech/9427.html