Delphi DLL
Delphi DLL
Example: Http.ResumeDownloadBd method
Demonstrates theResumeDownloadBd method.
Chilkat Delphi DLL Downloads
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, BinData, Http;
...
procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
http: HCkHttp;
bd: HCkBinData;
statusCode: Integer;
begin
success := False;
http := CkHttp_Create();
CkHttp_putKeepResponseBody(http,True);
// To demonstrate resuming a download, we've created a file on the chilkatsoft.com
// web server that contains the first 82,379 bytes of the full 279,658 bytes of the hamlet.xml file.
// We'll first download the partial file, and pretend it was a previous incomplete attempt to download the entire file.
bd := CkBinData_Create();
success := CkHttp_DownloadBd(http,'https://www.chilkatsoft.com/testData/hamlet_partial.xml',bd);
if (success = False) then
begin
Memo1.Lines.Add(CkHttp__lastErrorText(http));
Exit;
end;
// Download the remainder of hamlet.xml.
success := CkHttp_ResumeDownloadBd(http,'https://www.chilkatsoft.com/testData/hamlet.xml',bd);
statusCode := CkHttp_getLastStatus(http);
if (success = False) then
begin
if (statusCode = 0) then
begin
// Unable to either send the request or get the response.
Memo1.Lines.Add(CkHttp__lastErrorText(http));
end
else
begin
// We got a response, but the status code was not in the 200s
Memo1.Lines.Add('Response status code: ' + IntToStr(statusCode));
// Examine the response body.
Memo1.Lines.Add('Response body:');
Memo1.Lines.Add(CkHttp__lastResponseBody(http));
end;
Memo1.Lines.Add('Download failed.');
end
else
begin
Memo1.Lines.Add('Download success, response status = ' + IntToStr(statusCode));
end;
// The hamlet.xml file should be 279,658 bytes
Memo1.Lines.Add('size of hamlet.xml: ' + IntToStr(CkBinData_getNumBytes(bd)));
Memo1.Lines.Add('Success.');
CkHttp_Dispose(http);
CkBinData_Dispose(bd);
end;