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 运行带参数的程序等待其并获取结果

Delphi access 导出 excel 表格

Delphi 枚举resource资源名

Delphi 获取access中的表名

Delphi mscomm 发送接收

Delphi 极速字符串替换函数字符串转16进制

Delphi firedac连接mysql的时候报错

Delphi idhttp的基本用法

Delphi xe7 ios 取得系统字型名称

Delphi使用ado读写excel文件

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



打赏

取消

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

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

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

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

评论

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