• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

两种分析HTML网页的方法_html

html 搞代码 7年前 (2018-06-15) 161次浏览 已收录 0个评论

  有人想把web Page拉下来并抽取其中的内容。这其实是搜索引擎的一项最最基本的工作:下载,抽取,再下载。我早年做过一个Search Engine项目,不过代码都已经不见了。这次有人又问到我这个事情,我给攒了两个方法。

  方法A,在一个WinForm里面用一个隐藏的Browser控件下载Web Page,并用IhtmlDocument来分析内容。这个方法比较简单,但如果对于大量文件的分析速度很慢。

  这个方法中用到的主要代码如下:
private void button1_Click(object sender, System.EventArgs e) {
 object url=”
http://www.google.com“;
 object nothing=null;
 this.axWebBrowser1.Navigate2(ref url,ref nothing,ref nothing,ref nothing,ref nothing);
 this.axWebBrowser1.DownloadComplete+=new System.EventHandler(this.button2_Click);
}

private void button2_Click(object sender, System.EventArgs e) {
 this.textBox1.Text=””;
 mshtml.IHTMLDocument2 doc=(mshtml.IHTMLDocument2)this.axWebBrowser1.Document;
 mshtml.IHTMLElementCollection all=doc.all;
 System.Collections.IEnumerator enumerator=all.GetEnumerator();
 while(enumerator.MoveNext() && enumerator.Current!=null)
 {
  mshtml.IHTMLElement element=(mshtml.IHTMLElement)(enumerator.Current);
  if(this.checkBox1.Checked==true)
  {
   this.textBox1.Text+=”/r/n/r/n”+element.innerHTML;
  }
  else
  {
   this.textBox1.Text+=”/r/n/r/n”+element.outerHTML;
  }
 }
}

  方法B,用System.Net.WebClient下载Web Page存到本地文件或者String中用正则表达式来分析。这个方法可以用在Web Crawler等需要分析很多Web Page的应用中。

  下面是一个例子,能够把http://www.google.com首页里的所有的Hyperlink都抽取出来:

http://www.gaodaima.com/33238.html两种分析HTML网页的方法_html

using System;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;

namespace HttpGet{
 class Class1{
  [STAThread]
  static void Main(string[] args){
   System.Net.WebClient client=new WebClient();
   byte[] page=client.DownloadData(“
http://www.google.com“);
   string content=System.Text.Encoding.UTF8.GetString(page);
   string regex=”href=[///”
///’](http://////|//.///|///)?//w+(//.//w+)*(/////w+(//.//w+)?)*(///|//?//w*=//w*(&//w*=//w*)*)?[///”///’]”;
   Regex re=new Regex(regex);
   MatchCollection matches=re.Matches(content);
   
   System.Collections.IEnumerator enu=matches.GetEnumerator();
   while(enu.MoveNext() && enu.Current!=null)
   {
    Match match=(Match)(enu.Current);
    Console.Write(match.Value+”/r/n”);
   }
  }
 }
}

  真正做爬虫的,都是用正则表达式来做抽取的,可以找些开源的爬虫,代码都差不多。只是有些更高,可以把Flash或者JavaScript里面的URL都抽取出来。

  再补充一个,有人问我如果一个element是用document.write画出来的,还能不能在DOM里面取到。答案是肯定的。具体取的方法也和平常的一样。下面这个HTML就演示了从DOM里面取到用document.write动态生成的HTML Tag:

<FORM>
<SCRIPT>
   document.write(“<input type=button id=’btn1′ value=’button 1′>”);
</SCRIPT>
<INPUT onclick=show() type=button value=”click me”>
</FORM>
<TEXTAREA id=allnode rows=29 cols=53></TEXTAREA>
<SCRIPT>
function show()
{
   document.all.item(“allnode”).innerText=””;
   var i=0;
   for(i=0;i<document.forms[0].childNodes.length;i++)
   {
      document.all.item(“allnode”).innerText=document.all.item(“allnode”).innerText+”/r/n”+document.forms[0].childNodes[i].tagName+” “+document.forms[0].childNodes[i].value;
   }
}
</SCRIPT>

  点了“Click Me”以后,打印出来的forms[0]的子元素列表里面,“button 1”赫然在列。

欢迎大家阅读《两种分析HTML网页的方法_html》,跪求各位点评,若觉得好的话请收藏本文,by 搞代码


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:两种分析HTML网页的方法_html

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址