使用 C# 进行屏幕抓取 HTTPS
如何使用C# 筛选HTTPS?
How to screen scrape HTTPS using C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用C# 筛选HTTPS?
How to screen scrape HTTPS using C#?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
您可以使用 System.Net.WebClient 启动 HTTPS 连接,然后下拉页面以进行抓取。
You can use System.Net.WebClient to start an HTTPS connection, and pull down the page to scrape with that.
查看 Html 敏捷包。
Look into the Html Agility Pack.
您可以使用System.Net.WebClient来抓取网页。这是一个示例: http://www.codersource.net/csharp_screen_scraping.html
You can use System.Net.WebClient to grab web pages. Here is an example: http://www.codersource.net/csharp_screen_scraping.html
如果由于某种原因您在作为网络客户端访问页面时遇到问题,或者您想让请求看起来像是来自浏览器,您可以在应用程序中使用网络浏览器控件,在其中加载页面并使用从网络浏览器控件加载的内容的来源。
If for some reason you're having trouble with accessing the page as a web-client or you want to make it seem like the request is from a browser, you could use the web-browser control in an app, load the page in it and use the source of the loaded content from the web-browser control.
这是一个具体的(尽管很简单)的例子。您可以在查询字符串中将船舶名称传递给 VesselFinder,但即使它只找到一艘具有该名称的船舶,它仍然会向您显示一艘船舶的搜索结果屏幕。此示例检测到这种情况并将用户直接带到船舶的跟踪地图。
Here's a concrete (albeit trivial) example. You can pass a ship name to VesselFinder in the querystring, but even if it only finds one ship with that name it still shows you the search results screen with one ship. This example detects that case and takes the user straight to the tracking map for the ship.