728x90
반응형
var
StringStream: TStringStream;
StringList: TStringList;
begin
StringList:= TStringList.Create;
StringStream := TStringStream.Create('');
StringStream.Position := 0; // Reset to the beginning of the stream
IdHTTP.Get('주소', StringStream);
StringList.Text := StringStream.DataString;
end;
728x90
반응형
'삽질 > Delphi' 카테고리의 다른 글
[Delphi] URL에서 파일이름 추출하기 (0) | 2011.04.05 |
---|---|
[Delphi] uJSON 라이브러리 (0) | 2011.04.05 |
[Delphi] 파일 다운로드 - TFileStream (0) | 2011.04.05 |
[Delphi] 폼에 에니메이션 효과주기 (0) | 2011.04.01 |
[Delphi] 작업표시줄을 제외한 작업영역 구하기 (0) | 2011.04.01 |
댓글