从网页检索图像网址

本文关键字:图像 检索 网页 | 更新日期: 2023-09-27 18:34:40

string imgurlhard = doc.DocumentNode.
    Element("html").
    Element("body").
    Elements("div").Single(el => el.Attributes["id"].Value == "main").
    Elements("div").Single(el => el.Attributes["id"].Value == "onlineIntegrator").
    Elements("div").Single(el => el.Attributes["id"].Value == "results").
    Element("img").Attributes["src"].Value; 
MessageBox.Show(imgurlhard);

这是要检索的网页的URL:

http://integrals.wolfram.com/index.jsp?expr=sin(x)&random=false

谁能告诉我我做错了什么,因为我抓住了NullReferenceException

从网页检索图像网址

var image = doc.DocumentNode
    .Descendants("img")
    .Where(i => i.Attributes["class"] != null && i.Attributes["class"].Value == "traditionalForm")
    .Select(i => i.Attributes["src"].Value)
    .FirstOrDefault();

我建议使用HTMLagility。

string image = Doc.DocumentNode.SelectSingleNode("//div[@id='traditionalForm']//img['src'][1]").Attributes["src"].Value;

编辑

现在它应该可以工作了。