http下载文件——HttpWebRequest

作者:追风剑情 发布于:2015-10-28 15:14 分类: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. HttpWebRequest web_req = (HttpWebRequest)WebRequest.Create("http://192.168.1.211/android_res/version.txt");
  16. HttpWebResponse web_resp = (HttpWebResponse)web_req.GetResponse();
  17. long contentLength = web_resp.ContentLength;
  18. byte[] read_bytes = new byte[2048];
  19. int read_size = web_resp.GetResponseStream().Read(read_bytes, 0, read_bytes.Length);
  20. string content = Encoding.UTF8.GetString(read_bytes);
  21. web_resp.Close();
  22.  
  23. Console.WriteLine("文件长度: " + contentLength);
  24. Console.WriteLine("文件内容:");
  25. Console.WriteLine(content);
  26.  
  27. Console.Read();
  28. }
  29. catch (Exception e)
  30. {
  31. Console.WriteLine(e.ToString());
  32. }
  33. }
  34. }
  35. }

运行效果

hhhhh.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号