Delphi IdHTTP Http.Get 获取json数据


本文整理自网络,侵删。

 
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)
    Memo1: TMemo;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses
  IdBaseComponent,
  IdComponent,
  IdTCPConnection,
  IdTCPClient,
  IdHTTP,
  Math;



function Parse(text, sol, sag: string): String;    /// Function Author: Ali Zairov
begin
  Delete(text, 1, Pos(sol, text) + Length(sol) - 1);
  Result := Copy(text, 1, Pos(sag, text) - 1);
end;


Function WTemperature(APIID: String; City: String): String;
var
  XML: TStringList;
  Http: TIdHTTP;
begin
  XML := TStringList.Create;
  Http := TIdHTTP.Create(Nil);
  XML.Text := Http.Get('http://mobsec-dianhua.baidu.com/dianhua_api/open/location?tel=手机号');
 Result := Parse(XML.Text, 'location":', '}},');//Copy(Parse(XML.Text, 'location":', '}},'), 0, 10);
end;


procedure TForm1.Button1Click(Sender: TObject);
begin
Memo1.Text:=WTemperature('','');
end;

end.

相关阅读 >>

Delphi 请求时间,为当前时间,数值为1970-01-01以来的毫秒数

Delphi查找进程

Delphi 万能模糊查询

Delphi superobject 序列数据集

Delphi fmx中获取窗口比例

Delphi 生成日志记录单元

Delphi controls 属性与继承 tshape 类的小练习

Delphi 的内存操作函数(2): 给数组指针分配内存

Delphi一个简单的多线程例子

Delphi 直接将html字符串读入webbrowser中

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



打赏

取消

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

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

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

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

评论

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

    暂无评论...