求Delphi中提取网页源代码的例子
求Delphi中提取网页源代码的例子
日期:2009-09-09 19:44:52 人气:2
1.用idhttp
const
URL = 'http://www.qq.com';
begin
memo1.lines.text := idhttp1.get(URL);
end;
2.用webbrowser
//只获取到内的源码
const
URL = 'http://www.qq.com';
begin
webbrowser1.Navigate(URL);
whil