Delphi IdHTTP1 获取网页代码


本文整理自网络,侵删。

 
unit Unit1;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Memo1: TMemo;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses  IdHTTP,DateUtils;


function UnicodeToChinese(inputstr: string): string;
var
  index: Integer;
  temp, top, last: string;
begin
  index := 1;
  while index >= 0 do
  begin
    index := Pos('\u', inputstr) - 1;
    if index < 0 then
    begin
      last := inputstr;
      Result := Result + last;
      Exit;
    end;
    top := Copy(inputstr, 1, index); // 取出 编码字符前的 非 unic 编码的字符,如数字
    temp := Copy(inputstr, index + 1, 6); // 取出编码,包括 \u,如\u4e3f
    Delete(temp, 1, 2);
    Delete(inputstr, 1, index + 6);
    Result := Result + top + WideChar(StrToInt('$' + temp));
  end;
end;


function GetUnixTime: string;
begin
  Result := IntToStr((DateTimeToUnix(Now) - 8 * 60 * 60) * 1000);
end;

function GetHTML(Url: string): string;
var
  s_HTML: string;
  i: Integer;
  IdHTTP1:tIdHTTP;
begin
IdHTTP1:=tIdHTTP.Create(nil);
  try
    s_HTML := IdHTTP1.Get(Url);
    s_HTML := UnicodeToChinese(s_HTML);
    //i := Pos('(', s_HTML);
    //s_HTML := Copy(s_HTML, i + 1, Length(s_HTML) - i - 1);
    Result := s_HTML;
  except
    Result := '';
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
Memo1.text:=GetHTML('http://www.hao828.com/');
end;

end.

相关阅读 >>

Delphi tstringlist删除重复项

Delphi使用ado读写excel文件

Delphi firedac在后台线程中从mssql server检索记录的方法

Delphi中paramstr的用法

Delphi fmx 从app程序直接跳转到支付宝付款转帐页面

Delphi 闪盘小偷

Delphi savetextfiledialog 用法

Delphi判断某个程序是否已经启动

floattostr问题 保留小数位

Delphi twebbrowser也能响应回车键

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...