gpt4 book ai didi

c# - 如何使用 C# 在网页的源代码中查找 div 中的文本

转载 作者:IT王子 更新时间:2023-10-29 03:40:23 26 4
gpt4 key购买 nike

如何使用 LINQ 表达式从网站获取 HTML 代码,将其保存并查找一些文本?

我正在使用以下代码获取网页的源代码:


public static String code(string Url)
{
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(Url);
myRequest.Method = "GET";
WebResponse myResponse = myRequest.GetResponse();
StreamReader sr = new StreamReader(myResponse.GetResponseStream(),
System.Text.Encoding.UTF8);
string result = sr.ReadToEnd();
sr.Close();
myResponse.Close();

return result;
}

如何在网页源代码中找到 div 中的文本?

最佳答案

最好您可以使用 Webclient 类来简化您的任务:

using System.Net;

using (WebClient client = new WebClient())
{
string htmlCode = client.DownloadString("http://somesite.com/default.html");
}

关于c# - 如何使用 C# 在网页的源代码中查找 div 中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16642196/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com