我正在尝试使用HTML Agility包从网站上抓取一些数据。我真的很想弄清楚如何在foreach中使用selectnodes,然后将数据导出到列表或数组中。

这是到目前为止我正在使用的代码。

       string result = string.Empty;

        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(http://www.amazon.com/gp/offer-listing/B002UYSHMM/);
        request.Method = "GET";

        using (var stream = request.GetResponse().GetResponseStream())
        using (var reader = new StreamReader(stream, Encoding.UTF8))
        {
            result = reader.ReadToEnd();
        }

        HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
        doc.Load(new StringReader(result));
        HtmlNode root = doc.DocumentNode;

        string itemdesc = doc.DocumentNode.SelectSingleNode("//h1[@class='producttitle']").InnerText;  //this works perfectly to get the title of the item
        //HtmlNodeCollection sellers = doc.DocumentNode.SelectNodes("//id['bucketnew']/div/table/tbody/tr/td/ul/a/img/@alt");//this does not work at all in getting the alt attribute from the seller images
        HtmlNodeCollection prices = doc.DocumentNode.SelectNodes("//span[@class='price']"); //this works fine getting the prices
        HtmlNodeCollection nodes = doc.DocumentNode.SelectNodes("//div[@class='resultsset']/table/tbody[@class='result']/tr"); //this is the code I am working on to try to collect each tr in the result.  I then want to eather add each span.price to a list from this and also add each alt attribute from the seller image to a list.  Once I get this working I will want to use an if statement in the case that there is text for the seller name instead of an image.

        List<string> sellers = new List<string>();
        List<string> prices = new List<string>();

        foreach (HtmlNode node in nodes)
        {
            HtmlNode seller = node.SelectSingleNode(".//img/@alt");  // I am not sure if this works
            sellers.Add(seller.SelectSingleNode("img").Attributes["alt"]); //this definitly does not work and will not compile.

        }

我在上面的代码中有注释,显示了什么有效,什么无效以及我想要完成的工作。

如果有人有任何建议或阅读,那就太好了!我一直在搜索论坛和示例,但没有遇到任何我可以使用的东西。

最佳答案

SelectNodes注释掉的第一个问题不起作用,因为'id'不是元素名称,它是属性名称。您在其他表达式中使用了正确的语法来选择属性并比较值。例如,//ElementName[@attributeName='value']。我认为[attributeName='value']都应该起作用,但我尚未对此进行测试。
SelectNodes函数内部的语法称为“XPath”。 This link可能会帮助您。

您选择的seller节点是当前迭代的node的同级节点,它是具有alt属性的img。但是我认为您想要的正确语法只是img[@alt]

您说无法编译的下一个问题是检查错误消息,它很可能在提示参数类型。我认为sellers.Add正在寻找另一个HtmlNode的名称,而不是要添加的表达式所返回的属性。

另外,请查看Html Agility包文档以及有关语法的其他问题。

10-04 16:19