delphi 网页源代码
如何用delphi获取网页的源代码而且能获取重定向后的网页比如获取一个论坛的源代码然后能输入用户名密码登录还能返回登录后的网页说明:不要用delphi的webbrowse...
如何用delphi获取网页的源代码 而且能获取重定向后的网页
比如获取一个论坛的源代码 然后能输入用户名密码登录
还能返回登录后的网页
说明:不要用 delphi 的 webbrowser 控件
用其他的怎么做呀 展开
比如获取一个论坛的源代码 然后能输入用户名密码登录
还能返回登录后的网页
说明:不要用 delphi 的 webbrowser 控件
用其他的怎么做呀 展开
4个回答
展开全部
先在IndyClients控件集里填加idhttp到Form里
然后把idhttp的HandleRedirects设置为true
一般登陆过程是POST的 所以需要用idhttp post来写具体代码在下面
procedure TForm1.Button1Click(Sender: TObject);
var
sParams:TStringStream;
begin
sParams:=TStringStream.Create('问号后面的参数 也就是提交的登陆参数');
sParams.WriteString();
IdHTTP1.Request.ContentType:='application/x-www-form-urlencoded';
Memo1.Text:=Idhttp1.Post('提交网页要加http://',sParams);
end;
然后把idhttp的HandleRedirects设置为true
一般登陆过程是POST的 所以需要用idhttp post来写具体代码在下面
procedure TForm1.Button1Click(Sender: TObject);
var
sParams:TStringStream;
begin
sParams:=TStringStream.Create('问号后面的参数 也就是提交的登陆参数');
sParams.WriteString();
IdHTTP1.Request.ContentType:='application/x-www-form-urlencoded';
Memo1.Text:=Idhttp1.Post('提交网页要加http://',sParams);
end;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
展开全部
uses idhttp;
function getPage(URL:String):string;
var
http:tidhttp;
begin
result:='';
http:=tidhttp.Create(nil);
try
result:=http.Get(url);
except
// 错误304(转向)
if http.ResponseCode=304 then
result:='location='+http.Response.Location;
end;
http.Free;
end;
function getPage(URL:String):string;
var
http:tidhttp;
begin
result:='';
http:=tidhttp.Create(nil);
try
result:=http.Get(url);
except
// 错误304(转向)
if http.ResponseCode=304 then
result:='location='+http.Response.Location;
end;
http.Free;
end;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
以下就是的,你可以试试,应该可以的:
uses idhttp;
function getPage(URL:String):string;
var
http:tidhttp;
begin
result:='';
http:=tidhttp.Create(nil);
try
result:=http.Get(url);
except
// 错误304(转向)
if http.ResponseCode=304 then
result:='location='+http.Response.Location;
end;
http.Free;
end;
uses idhttp;
function getPage(URL:String):string;
var
http:tidhttp;
begin
result:='';
http:=tidhttp.Create(nil);
try
result:=http.Get(url);
except
// 错误304(转向)
if http.ResponseCode=304 then
result:='location='+http.Response.Location;
end;
http.Free;
end;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
为什么不用webbrowser?
这个控件有漏洞吗?
这个控件有漏洞吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询