使用 Html Agility Pack 进行 HTML 抓取
我有一个 HTML,其中包含以下代码,
<div id="image_src" style="display: block; ">
<img id="captcha_img" src="" alt="image" onclick="imageClick(event)" style="cursor:crosshair;">
在此我如何使用 HTML Agility Pack 检测 src?
在另一个问题中,我尝试使用以下 LINQ,
var urls = document.DocumentNode.Descendants("img")
.Select(e => e.GetAttributeValue("src", null))
.Where(s => !String.IsNullOrEmpty(s));
但我在这里不断收到空指针异常...
我在整个 HTML 中只有一个图像标签,如上面所示
有人可以帮助我吗..
I have an HTML which contains the following code
<div id="image_src" style="display: block; ">
<img id="captcha_img" src="" alt="image" onclick="imageClick(event)" style="cursor:crosshair;">
In this how can i detect the src using HTML Agility Pack ?
From another question I tried using the following LINQ
var urls = document.DocumentNode.Descendants("img")
.Select(e => e.GetAttributeValue("src", null))
.Where(s => !String.IsNullOrEmpty(s));
but i keep getting null pointer exception here ...
I have only one image tag in entire HTML given like above
Can somebody help me please ..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 HTML 敏捷包
Using the HTML Agility Pack
要解决空指针异常,请将每个 Linq 语句分成自己的行,如下所示:
然后,使用调试器单步调试每一行,并查看它在何处抛出。
To troubleshoot the null pointer exception, break each Linq statement into its own line, like this:
Then, step through each line with the debugger, and see where it throws.