delphi最简单的多线程网页采集


本文整理自网络,侵删。

 unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, IdHTTP;

type
TForm1 = class(TForm)
Edit1: TEdit;
Button1: TButton;
Memo1: TMemo;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

Function Getwebs:Integer;stdcall;
Var
myhttp: TIdhttp;
cc:string;
begin
myhttp:=Tidhttp.Create(nil);
myhttp.ReadTimeout := 30000;
try
cc := myhttp.Get(form1.Edit1.Text);
except
showmessage('出错!!');
end;
form1.Memo1.lines.Text :=cc;
myhttp.Free;
Result :=0;
end;

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var
ID: THandle;
begin
CreateThread(nil, 0, @Getwebs, nil, 0, ID);
end;

end.

相关阅读 >>

Delphi调用命令行命令并获取返回信息

Delphi 获取cpu monitor使用率

Delphi实现url编码解码函数

Delphi xe firemonkey的几个特色属性

Delphi 几种程序自杀的方法

Delphi 上传文件到七牛,纯原生

Delphi开发获取文件md5值

Delphi获取程序自身路径的函数

Delphi 之 工具栏组件(ttoolbar)

Delphi xe 取得 app 自己的版本号 (狠跨 4 个平台)

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...