Delphi Idhttp的get和post方法

来源:互联网 发布:苹果电脑系统备份软件 编辑:程序博客网 时间:2024/06/04 18:21

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');

0 0
原创粉丝点击