版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
1、怎樣使用C# 獲取百度搜索結果,并且解析到目標網址我們首先應該分析百度的搜索結果,發(fā)現(xiàn)百度的搜索結果的格式為:圖中標記部分可以知道,百度的搜索結果都是在id=”content_left”的結果中的,每個搜索項目的是以class=”result c-container”作為一項, 每項中的題目又是包含在h3標簽中,如下圖所示:因此我們有了思路:1. 根據(jù)關鍵字獲取到百度搜索結果的整個HTML文本2. 正則匹配到搜索結果容器的HTML3. 正則匹配到搜索結果每一項的HTML4. 取出每項結果中的題目和鏈接地址直接來干的,看下面的代碼:using System; using System.Colle
2、ctions.Generic; using System.Text; using System.Text.RegularExpressions; using System.Web; using System.Net;using System.IO;namespace BaiduSearchTest struct BaiduEntry public string title, brief, link; class Program static string GetHtml(string keyword) string url = " string encodedKeyword = Ht
3、tpUtility.UrlEncode(keyword, Encoding.GetEncoding(936); /百度使用codepage 936字符編碼來作為查詢串,果然專注于中文搜索 /更不用說,還很喜歡微軟 /谷歌能正確識別UTF-8編碼和codepage這兩種情況,不過本身網頁在HTTP頭里標明是UTF-8的 /估計谷歌也不討厭微軟(以及微軟的專有規(guī)范) string query = "s?wd=" + encodedKeyword; HttpWebRequest req; HttpWebResponse response; Stream stream;
4、 req = (HttpWebRequest)WebRequest.Create(url + query); response = (HttpWebResponse)req.GetResponse(); stream = response.GetResponseStream(); int count = 0; byte buf = new byte8192; string decodedString = null; StringBuilder sb = new StringBuilder(); try Console.WriteLine("正在讀取網頁0的內容", url
5、+ query); do count = stream.Read(buf, 0, buf.Length); if (count > 0) decodedString = Encoding.GetEncoding("utf-8").GetString(buf, 0, count); sb.Append(decodedString); while (count > 0); catch Console.WriteLine("網絡連接失敗,請檢查網絡設置。"); return sb.ToString(); static void PrintResul
6、t(List<BaiduEntry> entries) int count = 0; entries.ForEach(delegate(BaiduEntry entry) Console.WriteLine("找到了百度的第0條搜索結果:", count += 1); if (entry.link != null) Console.WriteLine("找到了一條鏈接:"); Console.WriteLine(entry.link); if (entry.title != null) Console.WriteLine("標題為:
7、"); Console.WriteLine(entry.title); if (entry.brief != null) Console.WriteLine("下面是摘要:"); Console.WriteLine(entry.brief); Program.Cut(); ); static void simpleOutput() string html = "<table><tr><td><font>test</font><a>hello</a><br>&l
8、t;/td></tr></table>" Console.WriteLine(RemoveSomeTags(html); static string RemoveVoidTag(string html) string filter = "<br>" ; foreach (string tag in filter) html = html.Replace(tag, ""); return html; static string ReleaseXmlTags(string html) string filt
9、er = "<a.*?>", "</a>", "<em>", "</em>", "<b>", "</b>", "<font.*?>", "</font>" ; foreach (string tag in filter) html = Regex.Replace(html, tag, ""); return html; &
10、#160; static string RemoveSomeTags(string html) html = RemoveVoidTag(html); html = ReleaseXmlTags(html); return html; static void Cut() Console.WriteLine(""); static void MainProc(string input) MainProc(input, false); static void MainProc(string input, bool tagsForBrief) Regex r = n
11、ew Regex("<h3sS*?</h3>", RegexOptions.IgnoreCase); MatchCollection matchCollection = r.Matches(input); List<string> collection = new List<string>(); foreach(Match m in matchCollection) string textReg = "<as*>*>(sS+?)</a>"
12、0; MatchCollection textMatchCollection = Regex.Matches(m.Value, textReg, RegexOptions.IgnoreCase); foreach (Match match in textMatchCollection) if (match.Success) Console.Write(match.Result("$1"); string LinkReg = "http:/(w-+.)+w-+(/w- ./?%&=*)?" MatchColle
13、ction linkMatchCollection = Regex.Matches(m.Value, LinkReg, RegexOptions.IgnoreCase); foreach (Match match in linkMatchCollection) if (match.Success) Console.Write(match.Groups0.Value); public static void Main(string args) Console.WriteLine("請輸入一個關鍵字。"); string keyword; keyword = Con
14、sole.ReadLine(); Console.WriteLine("正在從百度上獲取結果,請稍等"); string input; input = GetHtml(keyword); Regex r = new Regex("<div id="content_left"sS*</div><div style="clear:both;height:0;"></div>", RegexOptions.IgnoreCase); input = r.Match(input).V
15、alue; MainProc(input); Console.ReadKey(true); 程序結果如下圖所示:通過上面的例子你應該明白怎樣使用.NET/C# 獲取百度搜索結果項了吧,程序可以直接使用,如果沒有得到結果說明是百度搜索的結構變了,請按程序思路改正。Ok, 我們看到此時的搜索結果的url 都是被 被百度重定向過后的url 地址。 都是以 開頭的。那么我們需要再多做一點才能得到真正的url地址。我們用C# Get一下發(fā)現(xiàn)其實訪問的是一個包含我們目標網址的一個網頁。再多用一次正則去或者真正的目標網頁的url就好了。 public static string GetTheRedirect
16、Url(string originalAddress) string redirectUrl="" HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(originalAddress); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); redirectUrl =(String) response.ResponseUri.AbsoluteUri; Stream ReceiveStream = response.GetR
17、esponseStream(); Encoding encode = System.Text.Encoding.GetEncoding("utf-8"); StreamReader readStream = new StreamReader(ReceiveStream, encode); Char read = new Char256; / Read 256 charcters at a time. int count = readStream.Read(read, 0, 256); Console.WriteLine("HTML.rn"); while (count > 0) String str = new String(read, 0, count); count = readStream.Read(read, 0, 256); String patternstr = "url=s*(?:"(?<1>"*)"|(?<1>S+)"></noscript>" Regex pattern = new Regex( patternstr, RegexOption
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024年跨界合作框架協(xié)議書3篇
- 二手房買賣A3版標準化協(xié)議2024修訂版版B版
- 二手房交易標準協(xié)議范本2024版版B版
- 二零二五版機械工程設計與施工合同范本2篇
- 2024年速記服務企業(yè)信息保密合同版B版
- 2024租用學校教室合同范本
- 2024影視美術設計團隊創(chuàng)意開發(fā)與作品授權合同3篇
- 2024版商用視頻監(jiān)控安裝與維護合同
- 2024版建筑施工合同范本示例
- 2024版?zhèn)}儲設施租賃協(xié)議3篇
- 翼狀胬肉病人的護理
- GB/T 12914-2008紙和紙板抗張強度的測定
- GB/T 1185-2006光學零件表面疵病
- ps6000自動化系統(tǒng)用戶操作及問題處理培訓
- 家庭教養(yǎng)方式問卷(含評分標準)
- 城市軌道交通安全管理課件(完整版)
- 線纜包覆擠塑模設計和原理
- TSG ZF001-2006 安全閥安全技術監(jiān)察規(guī)程
- 部編版二年級語文下冊《蜘蛛開店》
- 鍋爐升降平臺管理
- 200m3╱h凈化水處理站設計方案
評論
0/150
提交評論