//WebClient取网页源码
private string GetHtmlSource(string Url)
{
try
{
System.Net.WebClient wc = new System.Net.WebClient();
wc.Headers["Accept-Language"] = "zh-cn";
wc.Encoding = Encoding.GetEncoding("utf-8"); return wc.DownloadString(Url);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return "";
}
}

除了DownloadString,WebClient还有DownloadFile和DownloadData两个函数。可以下载数据和文件。而DownloadString可以下载uri对应的网页代码。

留文备用。

04-23 17:57