WebClientWrite.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Net;
  3. using System.IO;
  4. namespace Wrox.ProCSharp.InternetAccess.WebWrite
  5. {
  6. /// <summary>
  7. /// Summary description for Class1.
  8. /// </summary>
  9. class Class1
  10. {
  11. /// <summary>
  12. /// The main entry point for the application.
  13. /// </summary>
  14. [STAThread]
  15. static void Main(string[] args)
  16. {
  17. //
  18. // TODO: Add code to start application here
  19. //
  20. WebClient webClient = new WebClient();
  21. try
  22. {
  23. Stream stream = webClient.OpenWrite("http://localhost/accept/newfile.txt","PUT");
  24. StreamWriter streamWriter = new StreamWriter(stream);
  25.     streamWriter.WriteLine("Hello there, World....");
  26. streamWriter.Close();
  27. }
  28. catch (Exception e) {Console.WriteLine( e.ToString() ); }
  29. Console.ReadLine();
  30. }
  31. }
  32. }