vb.NET 从网络浏览器中提取文本
我需要一种方法,以便我可以在任何网站上检查特定的关键字选择(即“很棒的蛋糕”)?有没有方法。
I need a method so that I can check for a certain selection of keywords(i.e. "The great cake") out of any website? Is there a method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
System.Net.WebClient
Use
System.Net.WebClient
查看
WebRequest
类。您可以创建传入 URL 的类的实例,然后解析WebResponse
http://msdn.microsoft.com/en-us/library/system.net.webrequest.create(v=vs.71).aspx
Check out the
WebRequest
class. You can create an instance of the class passing in your URL, then parse theWebResponse
http://msdn.microsoft.com/en-us/library/system.net.webrequest.create(v=vs.71).aspx