您的位置:首页 > 理论基础 > 计算机网络

Delphi Idhttp的get和post方法

2014-12-19 12:43 477 查看
Post

var

Param:TStringList;

RStream:TStringStream;

begin

Param:=TStringList.Create;

RStream:=TStringStream.Create('');



Param.Add('username=showlee000');

Param.Add('normModPsp=********');

Param.Add('mem_pass=true');

IdHTTP1.Post('Http://URL',

Param,RStream);

memo1.Text:=RStream.DataString;

Get

idHttp1.Request.CustomHeaders.Text :=

'Accept: image/jpeg, application/x-ms-application, image/gif, application/xaml+xml, image/pjpeg, application/x-ms-xbap, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*'+

#13+#10+'Referer:http://url'+

#13+#10+'Accept-Language: zh-CN' +

#13+#10+'User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'+

#13+#10+'Accept-Encoding: gzip, deflate'+

#13+#10+'Host: ***'+

#13+#10+'Connection: Keep-Alive'+

#13+#10+'Authorization: Basic *****=';

IdHTTP1.get('http://url');
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: