C# 实现对网站Get与Post请求
C# 是一种面向对象的编程语言,提供了强大的Web请求库和API来执行 HTTP GET 和 POST 请求。在C#中,我们可以使用 System.Net 命名空间下的 WebRequest 和 WebResponse 类来实现Web请求,并使用HttpWebRequest 和 HttpWebResponse 类来支持 HTTP GET 和 POST 请求。
对于 HTTP GET 请求,我们可以创建一个 WebRequest 对象,通过指定请求的 URL 和请求方法,然后调用 GetResponse() 方法来获取响应的 WebResponse 对象。我们可以从响应体中提取信息,并将其转换成字符串或字节数组等。对于 HTTP POST 请求,我们使用 HttpWebRequest 对象来构建请求,通过设置请求的属性(如 Method, ContentType, ContentLength, UserAgent等)和Post数据,然后调用 GetResponse() 方法来获取响应的 HttpWebResponse 对象。
在使用WebRequest,WebResponse,HttpWebRequest和HttpWebResponse类时,应该注意异常处理(如超时、服务器错误、协议错误),并适当设置请求和响应的头文件(如Cookies、UserAgents、Referers、Headers等)。
通过配合new WebClient()
自己封装接口HttpGetPage(string url,string coding)
用户传入网站地址以及编码方式,即可下载指定页面到变量中。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
public static string HttpGetPage(string url,string coding)
{
string pageHtml = string.Empty;
try
{
using(WebClient MyWebClient = new WebClient())
{
Encoding encode = Encoding.GetEncoding(coding);
MyWebClient.Headers.Add("User-Agent", "Mozilla/5.0 (Windows NT 10.0; WOW64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36");
MyWebClient.Credentials = CredentialCache.DefaultCredentials;
Byte[] pageData = MyWebClient.DownloadData(url);
pageHtml = encode.GetString(pageData);
}
}
catch { }
return pageHtml;
}
static void Main(string[] args)
{
var html = HttpGetPage("https://www.baidu.com","utf-8");
Console.WriteLine(html);
Console.ReadKey();
}
}
}
POST请求与Get类似,此处封装一个HttpPost(url, dic);
函数,传入网站路径以及需要推送的键值对,即可使用。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.IO;
namespace ConsoleApplication1
{
class Program
{
public static string HttpPost(string url, Dictionary<string, string> dic)
{
string result = "";
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
req.Method = "POST";
req.UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64)AppleWebKit/537.36";
req.ContentType = "application/x-www-form-urlencoded";
#region
StringBuilder builder = new StringBuilder();
int i = 0;
foreach (var item in dic)
{
if (i > 0)
builder.Append("&");
builder.AppendFormat("{0}={1}", item.Key, item.Value);
i++;
}
byte[] data = Encoding.UTF8.GetBytes(builder.ToString());
req.ContentLength = data.Length;
using (Stream reqStream = req.GetRequestStream())
{
reqStream.Write(data, 0, data.Length);
reqStream.Close();
}
#endregion
HttpWebResponse resp = (HttpWebResponse)req.GetResponse();
Stream stream = resp.GetResponseStream();
//获取响应内容
using (StreamReader reader = new StreamReader(stream, Encoding.UTF8))
{
result = reader.ReadToEnd();
}
return result;
}
static void Main(string[] args)
{
string url = "http://www.baidu.com/";
Dictionary<string, string> dic = new Dictionary<string, string> { };
dic.Add("username","lyshark");
HttpPost(url, dic);
Console.ReadKey();
}
}
}
本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!