C#:使用WebRequest类请求数据

本文翻译于:https://msdn.microsoft.com/en-us/library/456dfw4f(v=vs.110).aspx

下列程序描述的步骤用于从服务器请求一个资源,例如,一个Web页面或文件。必须由URI标识的资源。

从主机服务器请求数据:

1、创建一个WebRequest实例通过调用创建URI的资源。

  WebRequest request = WebRequest.Create("http://www.contoso.com/");

    note:

  .net 框架提供了特定于协议的类来自WebRequest和WebResponse uri以“http:”开始,“https:“,“ftp:”,“文件:”。使用其他协议来访问资源,您必须实现特定于协议的类来自WebRequest WebResponse。有关更多信息,请参见编程可插协议。


2、设置在WebRequest任何你需要的属性值。例如,要启用身份验证,设置凭证属性NetworkCredential类的一个实例。

  request.Credentials = CredentialCache.DefaultCredentials;

  在大多数情况下,WebRequest类足以接收数据。然而,如果你需要设置特定于协议的特性,你必须把WebRequest特定于协议的类型。例如,访问HTTP-specific HttpWebRequest的性质,把WebRequest HttpWebRequest参考。以下代码示例展示了如何设置HTTP-specific UserAgent属性。

  ((HttpWebRequest)request).UserAgent = ".NET Framework Example Client";

3、向服务器发送请求,调用GetResponse。返回的WebResponse对象的实际类型是由请求的URI的方案。

  WebResponse response = request.GetResponse();

  你完成了一个WebResponse对象后,您必须关闭它通过调用方法。或者,如果您得到的响应流响应对象,您可以关闭流通过调用流。关闭方法。如果你不关闭响应或流,您的应用程序可以运行的连接到服务器并成为无法处理其他请求。

4、您可以访问的属性WebResponse或铸WebResponse读特定于协议的特定于协议的实例属性。例如,访问HTTP-specific HttpWebResponse的性质,把WebResponse HttpWebResponse参考。以下代码示例展示了如何显示状态信息发送响应。

  Console.WriteLine (((HttpWebResponse)response).StatusDescription);

5、得到包含响应由服务器发送的数据流,使用GetResponseStream WebResponse的方法。

  Stream dataStream = response.GetResponseStream ();

6、阅读响应的数据之后,您必须使用流关闭响应流。关闭方法或关闭使用WebResponse响应。关闭方法。没有必要调用关闭方法在响应流和WebResponse,但这样做并不是有害的。WebResponse。比分接近的流。关闭时关闭响应。

  response.Close();

Demo:
 1 using System;
 2 using System.IO;
 3 using System.Net;
 4 using System.Text;
 5 
 6 namespace Examples.System.Net
 7 {
 8     public class WebRequestGetExample
 9     {
10         public static void Main ()
11         {
12             // Create a request for the URL. 
13             WebRequest request = WebRequest.Create (
14               "http://www.contoso.com/default.html");
15             // If required by the server, set the credentials.
16             request.Credentials = CredentialCache.DefaultCredentials;
17             // Get the response.
18             WebResponse response = request.GetResponse ();
19             // Display the status.
20             Console.WriteLine (((HttpWebResponse)response).StatusDescription);
21             // Get the stream containing content returned by the server.
22             Stream dataStream = response.GetResponseStream ();
23             // Open the stream using a StreamReader for easy access.
24             StreamReader reader = new StreamReader (dataStream);
25             // Read the content.
26             string responseFromServer = reader.ReadToEnd ();
27             // Display the content.
28             Console.WriteLine (responseFromServer);
29             // Clean up the streams and the response.
30             reader.Close ();
31             response.Close ();
32         }
33     }
34 }

 

转载于:https://www.cnblogs.com/ylhssn/p/5156605.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值