从HTTP请求中提取内容,然后从中获取选定的内容
只是出于学习目的,我正在玩页面请求和响应。我需要知道如何实现这一点。我想要做的是从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议使用 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.
您可以使用 HttpWebRequest 获取页面的源内容,如下所示。
You can use HttpWebRequest to get Source content of page the as follows.