欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#实现批量下载图片到本地示例代码

程序员文章站 2023-12-04 16:41:04
一、概述 批量下载图片是我们在日常开发中经常会遇到的一个需求,这不,最近工作中就需要批量下载图片到本地,先是通过excel拼接生成了所有链接地址,然后想到的是通过下载...

一、概述

批量下载图片是我们在日常开发中经常会遇到的一个需求,这不,最近工作中就需要批量下载图片到本地,先是通过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

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。