using System;
using System.Net;

namespace ConsoleApplication2
{
class Program
{

public static void Get_img()
{
try
{
WebClient wClient = new WebClient();
wClient.DownloadFile("http://xxxxxxx/wKiFR1XIHriAQ3M1AAr915dq3c4344.jpg", "E:\\1.jpg");
}
catch (Exception ex) { string aa = ex.Message; }
}

static void Main(string[] args)
{
Get_img();
}
}
}

相关文章:

  • 2022-12-23
  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2022-02-08
  • 2021-12-09
  • 2021-11-27
  • 2021-11-15
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
  • 2021-05-18
  • 2022-12-23
  • 2022-02-26
相关资源
相似解决方案