日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

获取html内标题,通过html敏捷包获取标题标签

發布時間:2025/3/8 编程问答 15 豆豆
生活随笔 收集整理的這篇文章主要介紹了 获取html内标题,通过html敏捷包获取标题标签 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

我正在嘗試使用htmlagility pack來獲得結果的鏈接和結果

我有這個代碼

using HtmlAgilityPack;

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.IO;

using System.Linq;

using System.Net;

using System.ServiceModel.Syndication;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;

using System.Xml;

namespace Search

{

public partial class Form1 : Form

{

// load snippet

HtmlAgilityPack.HtmlDocument htmlSnippet = new HtmlAgilityPack.HtmlDocument();

public Form1()

{

InitializeComponent();

}

private void btn1_Click(object sender, EventArgs e)

{

listBox1.Items.Clear();

StringBuilder sb = new StringBuilder();

byte[] ResultsBuffer = new byte[8192];

string SearchResults = "http://google.com/search?q=" + txtKeyWords.Text.Trim();

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(SearchResults);

HttpWebResponse response = (HttpWebResponse)request.GetResponse();

Stream resStream = response.GetResponseStream();

string tempString = null;

int count = 0;

do

{

count = resStream.Read(ResultsBuffer, 0, ResultsBuffer.Length);

if (count != 0)

{

tempString = Encoding.ASCII.GetString(ResultsBuffer, 0, count);

sb.Append(tempString);

}

}

while (count > 0);

string sbb = sb.ToString();

HtmlAgilityPack.HtmlDocument html = new HtmlAgilityPack.HtmlDocument();

html.OptionOutputAsXml = true;

html.LoadHtml(sbb);

HtmlNode doc = html.DocumentNode;

foreach (HtmlNode link in doc.SelectNodes("//a[@href]"))

{

//HtmlAttribute att = link.Attributes["href"];

string hrefValue = link.GetAttributeValue("href", string.Empty);

if (!hrefValue.ToString().ToUpper().Contains("GOOGLE") && hrefValue.ToString().Contains("/url?q=") && hrefValue.ToString().ToUpper().Contains("HTTP://"))

{

int index = hrefValue.IndexOf("&");

if (index > 0)

{

hrefValue = hrefValue.Substring(0, index);

listBox1.Items.Add(hrefValue.Replace("/url?q=", ""));

}

}

}

}

}

}

此代碼返回查詢的結果鏈接我想獲得每個鏈接的標題標簽我如何獲得每個鏈接的標題?

任何人都可以幫忙嗎?

總結

以上是生活随笔為你收集整理的获取html内标题,通过html敏捷包获取标题标签的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。