using
system;
using
system.collections.generic;
using
system.componentmodel;
using
system.data;
using
system.drawing;
using
system.text;
using
system.windows.forms;
using
system.net;
using
system.io;
using
system.text.regularexpressions;
using
system.collections;
namespace
copyhtml
private
void
button1_click(
object
sender, eventargs e)
textbox2.text = sb.tostring();//抓取得到的源網頁
string
he = textbox2.text.tostring();
textbox3.text = striphtml(he);//去除html標籤後得到的源網頁
match titlematch = regex.match(he, "([^<]*)"
, regexoptions.ignorecase | regexoptions.multiline);
//獲取網頁的標題
string
title = titlematch.groups[1].value;
textbox4.text = ("網頁的標題是:"
+ title );
} ///
/// 去掉網頁中的html標籤
///
/// 待轉化的字串
///
private
string
striphtml(
string
strhtml)
// 提取html**中的**
public
static
arraylist gethyperlinks(
string
htmlcode)
} if(!rep) al.add(strnew);
} al.sort();
return
al;
} }
}
c 抓取網頁內容
新增的引用 using system.net using system.io using system.io.compression 1.webclient mywebclient new webclient mywebclient.credentials credentialcache.defau...
c 抓取網頁分析
目的 抓取網頁,分析網頁內容,進行處理獲取資訊。例子 抓km169上的adsl使用者的費用資訊,分析儲存到本地資料庫。步驟 1 抓取。2 分析。3 儲存。王 2006 2 13 05 48 王 2006 2 13 05 56 2 分析 public string get return null 此處...
C 抓取網頁內容
1 抓取一般內容 需要三個類 webrequest webresponse streamreader 所需命名空間 system.net system.io 核心 webrequest request webrequest.create webresponse response request.ge...