http下载文件——WebClient

作者:追风剑情 发布于:2015-10-28 16:30 分类:C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Web;
  4. using System.Net;
  5. using System.Text;
  6.  
  7. namespace WebRequestTest
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. try
  14. {
  15. WebClient wc = new WebClient();
  16. Uri u = new Uri("http://192.168.1.211/android_res/version.txt");
  17. wc.DownloadStringCompleted += new DownloadStringCompletedEventHandler(OnDownloadStringComplete);
  18. wc.DownloadStringAsync(u);
  19.  
  20. Console.Read();
  21. }
  22. catch (Exception e)
  23. {
  24. Console.WriteLine(e.ToString());
  25. }
  26. }
  27.  
  28. private static void OnDownloadStringComplete(object sender, DownloadStringCompletedEventArgs e)
  29. {
  30. string result = e.Result;
  31. Console.WriteLine("下载完成:");
  32. Console.WriteLine(result);
  33. }
  34. }
  35. }

运行效果:

hhhhh.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号