从HTTP请求中提取内容,然后从中获取选定的内容

发布于 2024-10-11 04:23:52 字数 303 浏览 6 评论 0原文

只是出于学习目的,我正在玩页面请求和响应。我需要知道如何实现这一点。我想要做的是从 Windows 应用程序发出 HTTP 请求并从中提取一些内容。例如,

我正在调用 http://stackoverflow.com/questions 现在,我想从响应中提取

中的所有问题节点并对其进行格式化,然后将其显示在表中。有人可以指导我如何做到这一点吗?我在这里也可以从正则表达式中格式化和提取东西,但我不知道如何做。

提前致谢 卢拉

just for learning purpose, i ma playing with page Request and response.I need to know how can i achieve this.What i want to do is to make a HTTP request from windows application and extract some content from it. For example

I am calling http://stackoverflow.com/questions
now from response i want to extract all question nodes which is in <div id="questions"> and format that and then display this in Table. Can some body guide me how to do that. I here that i can do that formating and extracting thingy from regular expression too but i m not sure how.

Thanks in advance
Lura

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南风几经秋 2024-10-18 04:23:52

我建议使用 HTML Agility Pack - 它将允许您直接获取页面并使用 XPath 查询它,类似XmlDocument 的工作原理。

I suggest using the HTML Agility Pack - it will allow you to get the page directly and query it using XPath, similar to how XmlDocument works.

胡大本事 2024-10-18 04:23:52

您可以使用 HttpWebRequest 获取页面的源内容,如下所示。

string url = @"http://stackoverflow.com/users";

        System.Net.WebRequest request = System.Net.HttpWebRequest.Create(url);

        System.Net.HttpWebResponse  response = (System.Net.HttpWebResponse)request.GetResponse();
        System.IO.StreamReader stream = new System.IO.StreamReader
                (response.GetResponseStream(), System.Text.Encoding.GetEncoding("utf-8"));

         XmlDocument rssDoc = new XmlDocument();
         rssDoc.Load(stream);

You can use HttpWebRequest to get Source content of page the as follows.

string url = @"http://stackoverflow.com/users";

        System.Net.WebRequest request = System.Net.HttpWebRequest.Create(url);

        System.Net.HttpWebResponse  response = (System.Net.HttpWebResponse)request.GetResponse();
        System.IO.StreamReader stream = new System.IO.StreamReader
                (response.GetResponseStream(), System.Text.Encoding.GetEncoding("utf-8"));

         XmlDocument rssDoc = new XmlDocument();
         rssDoc.Load(stream);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文