c 抓取網頁分析

2021-08-30 05:59:05 字數 2692 閱讀 7404

目的:

抓取網頁,分析網頁內容,進行處理獲取資訊。

例子:

抓km169上的adsl使用者的費用資訊,分析儲存到本地資料庫。

步驟:1、抓取。2、分析。3、儲存。

王 2006-2-13 05:48

王 2006-2-13 05:56

2、分析

public string get()

return null;

} 此處的關鍵在於正規表示式,利用匹配關係獲得一條條記錄,再用%1~%9分組,得到每個欄位的內容,最後生成相應的記錄即可(拼sql也可),這裡用了個持久化的咚咚,下次詳細說。

正則技巧:用^(間隔符號)來劃分字段,:)不大好解釋,大家自己體會下吧。

[[i] last edited by 王 on 2006-2-13 at 13:58 [/i]]

timothy

2006-2-14 01:44

timothy

2006-2-14 01:49

其中b是網頁源**的以二進位制方式讀取的陣列

王 2006-2-14 03:39

小強~呵呵,

timothy

2006-2-14 05:38

這樣的也算小強阿,我一向都把你當我的偶像來的:)

王 2006-2-16 09:01

你是我偶像,把你那個程式詳細分析下給大家看看嘛。

timothy

2006-2-16 10:14

timothy

2006-2-17 01:32

public class exceptioneventargs : system.eventargs }

public exception exception }

public exceptionactions exceptionaction

set }

internal exceptioneventargs(system.exception e, downloadstate downloadstate) }

///

/// 包含 download 事件資料的類

這個是如何使用的乙個****** demo

namespace multithread

{ using system;

using system.io;

using system.net;

using system.text;

using system.security;

using system.threading;

using system.collections;

using system.collections.specialized;

using ***crazy;

///

/// 測試類

///

PHP抓取網頁和分析

thursday,29.june 2006,06 41 03 php程式設計 譯者 limodou 抓取和分析乙個檔案是非常簡單的事。這個教程將通過乙個例子帶領你一步一步地去實現它。讓我們開 始吧!首先,我首必須決定我們將抓取的url位址。可以通過在指令碼中設定或通過 query string傳遞。...

c 抓取網頁內容

新增的引用 using system.net using system.io using system.io.compression 1.webclient mywebclient new webclient mywebclient.credentials credentialcache.defau...

C 抓取網頁內容

1 抓取一般內容 需要三個類 webrequest webresponse streamreader 所需命名空間 system.net system.io 核心 webrequest request webrequest.create webresponse response request.ge...