[delphi] indy10 idhttpget 방법
procedure Get(AURL: string; AResponseContent: TStream); overload;
procedure Get(AURL: string; AResponseContent: TStream; AIgnoreReplies: array of SmallInt);
overload;
function Get(AURL: string): string; overload;
function Get(AURL: string; AIgnoreReplies: array of SmallInt): string; overload;
그중의 가장 기본적인 방법은 과정류 방법이다
procedure Get(AURL: string; AResponseContent: TStream; AIgnoreReplies: array of SmallInt);
overload;
다른 get 방법의 재부팅은 모두 끼워 넣은 이 방법에 기반을 두고 있다.매개변수:
AURL: string; // get URL
AResponseContent: TStream; //
AIgnoreReplies: array of SmallInt; // http
코드 예:
unit UMain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient,
IdHTTP, StdCtrls;
type
TForm1 = class(TForm)
IdHTTP1: TIdHTTP;
Memo1: TMemo;
btnGetOne: TButton;
btnGetTwo: TButton;
btnGetThree: TButton;
btnGetFour: TButton;
procedure btnGetOneClick(Sender: TObject);
procedure btnGetTwoClick(Sender: TObject);
procedure btnGetThreeClick(Sender: TObject);
procedure btnGetFourClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
const
Cgeturl = 'http://www.soso.com/';
C302url = 'http://soso.com/';
var
RespData : TStringStream;
procedure TForm1.btnGetOneClick(Sender: TObject);
begin
RespData := TStringStream.Create('');
IdHTTP1.Get(Cgeturl, RespData);
Memo1.Text := RespData.DataString;
end;
procedure TForm1.btnGetTwoClick(Sender: TObject);
begin
RespData := TStringStream.Create('');
IdHTTP1.Get(C302url, RespData, [302]);
Memo1.Text := RespData.DataString;
end;
procedure TForm1.btnGetThreeClick(Sender: TObject);
begin
Memo1.Text := IdHTTP1.Get(Cgeturl);
end;
procedure TForm1.btnGetFourClick(Sender: TObject);
begin
Memo1.Text := IdHTTP1.Get(C302url, [302]);
end;
end.
데모 다운로드:
http://download.csdn.net/detail/none01/5128838
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[Delphi] TStringBuilder그리고 꼭 사용해야만 할까? 그림처럼 Heap 영역에 "Hello" 공간을 생성하고 포인팅을 한다. "Hello World" 공간을 새로 생성한 후 포인팅을 하게 된다. 결국 "Hello" 라는 String 객체가 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.